mirror of
https://github.com/github/codeql.git
synced 2026-04-27 01:35:13 +02:00
12 lines
192 B
Plaintext
12 lines
192 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
|
|
|