mirror of
https://github.com/github/codeql.git
synced 2026-04-30 11:15:13 +02:00
14 lines
286 B
Plaintext
14 lines
286 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
|