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

12 lines
154 B
Plaintext

/**
* @name Specifiers3
*/
import cpp
from Variable v, Type t
where v.getType() = t
and t.isConst()
select v.getLocation().getStartLine(),
v