Files
codeql/csharp/ql/test/library-tests/expressions/Literals6.ql
2018-12-20 10:19:59 +01:00

13 lines
194 B
Plaintext

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