mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
15 lines
288 B
Plaintext
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
|