mirror of
https://github.com/github/codeql.git
synced 2026-04-27 09:45:15 +02:00
12 lines
184 B
Plaintext
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
|
|
|