mirror of
https://github.com/github/codeql.git
synced 2026-04-26 17:25:19 +02:00
10 lines
186 B
Plaintext
10 lines
186 B
Plaintext
/**
|
|
* @name dostmt03
|
|
* @description No do statement condition has more than two successors.
|
|
*/
|
|
|
|
import cpp
|
|
|
|
from DoStmt ds
|
|
where count(ds.getCondition().getASuccessor()) > 2
|
|
select ds |