mirror of
https://github.com/github/codeql.git
synced 2026-03-28 02:08:17 +01:00
12 lines
181 B
Plaintext
12 lines
181 B
Plaintext
/**
|
|
* @name Test for literals
|
|
*/
|
|
import csharp
|
|
|
|
from Method m, CharLiteral l
|
|
where m.hasName("MainLiterals")
|
|
and l.getEnclosingCallable() = m
|
|
and l.getValue() = "@"
|
|
select l
|
|
|