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

16 lines
314 B
Plaintext

/**
* @name Test for enums
*/
import csharp
from EnumConstant c
where
c.getName() = "Red" and
c.getDeclaringType().hasQualifiedName("Enums.SparseColor") and
c.getType() = c.getDeclaringType() and
c.getValue() = "0" and
c.getUnderlyingType() instanceof IntType and
not c.hasExplicitValue()
select c