mirror of
https://github.com/github/codeql.git
synced 2026-03-22 15:36:48 +01:00
15 lines
324 B
Plaintext
15 lines
324 B
Plaintext
/**
|
|
* @name Test for constants
|
|
*/
|
|
import csharp
|
|
|
|
from MemberConstant c
|
|
where c.getName() = "Z"
|
|
and c.getDeclaringType().hasQualifiedName("Constants.B")
|
|
and c.getType() instanceof IntType
|
|
and c.getInitializer() instanceof BinaryOperation
|
|
and c.isPublic()
|
|
and c.getValue() = "11"
|
|
select c, c.getType().toString()
|
|
|