Files
codeql/csharp/ql/test/library-tests/csharp7/DefUse.ql
2018-08-02 17:53:23 +01:00

10 lines
232 B
Plaintext

import csharp
from
AssignableDefinition def,
AssignableRead read,
Ssa::Definition ssaDef
where ssaDef.getAnUltimateDefinition().(Ssa::ExplicitDefinition).getADefinition() = def
and read = ssaDef.getARead()
select def, read