mirror of
https://github.com/github/codeql.git
synced 2026-04-14 03:24:06 +02:00
13 lines
192 B
Plaintext
13 lines
192 B
Plaintext
/**
|
|
* @name Test for literals
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Method m, DecimalLiteral l
|
|
where
|
|
m.hasName("MainLiterals") and
|
|
l.getEnclosingCallable() = m and
|
|
l.getValue() = "123.456"
|
|
select l
|