Files
codeql/cpp/ql/test/library-tests/attributes/stmt_attributes/clang_fallthrough.ql
2018-08-02 17:53:23 +01:00

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()