mirror of
https://github.com/github/codeql.git
synced 2026-03-27 17:58:17 +01:00
8 lines
201 B
Plaintext
8 lines
201 B
Plaintext
import cpp
|
|
|
|
from Stmt s, StdAttribute a
|
|
where s.getASuccessor() instanceof SwitchCase
|
|
and a = s.getAnAttribute()
|
|
and a.hasQualifiedName("clang", "fallthrough")
|
|
select s, a.getLocation().toString()
|