mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
14 lines
254 B
Plaintext
14 lines
254 B
Plaintext
/**
|
|
* @name Test for enums
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from EnumConstant c
|
|
where
|
|
c.getName() = "Green" and
|
|
c.getDeclaringType().hasQualifiedName("Enums.Color") and
|
|
c.getType() = c.getDeclaringType() and
|
|
c.getUnderlyingType() instanceof IntType
|
|
select c
|