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

9 lines
141 B
Plaintext

import cpp
from Constructor f, Constructor g
where
f.isCompilerGenerated() and
f.calls(g) and
not g.isCompilerGenerated()
select f, g