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

12 lines
184 B
Plaintext

/**
* @name Test for literals
*/
import csharp
from Method m, NullLiteral l
where m.hasName("MainLiterals")
and l.getEnclosingCallable() = m
and l.getValue() = "null"
select l