mirror of
https://github.com/github/codeql.git
synced 2026-03-23 16:06:47 +01:00
11 lines
175 B
Plaintext
11 lines
175 B
Plaintext
/**
|
|
* @name Test for enums
|
|
*/
|
|
import csharp
|
|
|
|
from EnumConstant c
|
|
where c.getName() = "Red"
|
|
and c.getDeclaringType().hasQualifiedName("Enums.Color")
|
|
select c, c.getType()
|
|
|