mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
13 lines
189 B
Plaintext
13 lines
189 B
Plaintext
/**
|
|
* @name Test for literals
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Method m, DoubleLiteral l
|
|
where
|
|
m.hasName("MainLiterals") and
|
|
l.getEnclosingCallable() = m and
|
|
l.getValue() = "4.565"
|
|
select l
|