mirror of
https://github.com/github/codeql.git
synced 2026-04-20 06:24:03 +02:00
14 lines
310 B
Plaintext
14 lines
310 B
Plaintext
/**
|
|
* @name Test for enums
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from EnumConstant c
|
|
where
|
|
c.getName() = "Green" and
|
|
c.getDeclaringType().hasFullyQualifiedName("Enums", "LongColor") and
|
|
c.getType() = c.getDeclaringType() and
|
|
c.getValue() = "1"
|
|
select c, c.getDeclaringType().getBaseClass().getFullyQualifiedNameDebug()
|