mirror of
https://github.com/github/codeql.git
synced 2026-04-28 02:05:14 +02:00
15 lines
311 B
Plaintext
15 lines
311 B
Plaintext
/**
|
|
* @name Test for enums
|
|
*/
|
|
import csharp
|
|
|
|
|
|
from EnumConstant c
|
|
where c.getName() = "Green"
|
|
and c.getDeclaringType().hasQualifiedName("Enums.SparseColor")
|
|
and c.getType() = c.getDeclaringType()
|
|
and c.getValue() = "10"
|
|
and c.getUnderlyingType() instanceof IntType
|
|
and c.hasExplicitValue()
|
|
select c
|