Files
codeql/csharp/ql/test/library-tests/fields/Constants3.ql
2023-11-10 08:46:15 +01:00

16 lines
334 B
Plaintext

/**
* @name Test for constants
*/
import csharp
from MemberConstant c
where
c.getName() = "Z" and
c.getDeclaringType().hasFullyQualifiedName("Constants", "B") and
c.getType() instanceof IntType and
c.getInitializer() instanceof BinaryOperation and
c.isPublic() and
c.getValue() = "11"
select c, c.getType().toString()