Files
codeql/csharp/ql/test/library-tests/enums/Enums7.ql
2018-12-20 10:19:59 +01:00

15 lines
288 B
Plaintext

/**
* @name Test for enums
*/
import csharp
from EnumConstant c
where
c.getName() = "FourBlue" and
c.getDeclaringType().hasQualifiedName("Enums.ValueColor") and
c.getType() = c.getDeclaringType() and
c.getValue() = "4" and
c.getUnderlyingType() instanceof UIntType
select c