Files
codeql/csharp/ql/test/library-tests/fields/Constants2.ql
2018-08-02 17:53:23 +01:00

15 lines
319 B
Plaintext

/**
* @name Test for constants
*/
import csharp
from MemberConstant c
where c.getName() = "Y"
and c.getDeclaringType().hasQualifiedName("Constants.A")
and c.getType() instanceof IntType
and c.getInitializer() instanceof IntLiteral
and c.isPublic()
and c.getValue() = "10"
select c, c.getType().toString()