mirror of
https://github.com/github/codeql.git
synced 2026-04-29 10:45:15 +02:00
14 lines
218 B
Plaintext
14 lines
218 B
Plaintext
/**
|
|
* @name dostmt05
|
|
* @description The unique successor of each do statement is its body.
|
|
*/
|
|
|
|
import cpp
|
|
|
|
from DoStmt ds
|
|
where not
|
|
(
|
|
ds.getStmt() = ds.getASuccessor()
|
|
and count(ds.getASuccessor()) = 1
|
|
)
|
|
select ds |