Files
codeql/csharp/ql/test/library-tests/fields/Fields8.ql
2023-11-10 08:46:15 +01:00

15 lines
280 B
Plaintext

/**
* @name Test for fields
*/
import csharp
from Field f, UnboundGenericClass c
where
f.getName() = "count" and
f.getDeclaringType() = c and
c.hasFullyQualifiedName("Fields", "C`1") and
f.getType() instanceof IntType and
f.isStatic()
select f, f.getDeclaringType()