mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
12 lines
139 B
Plaintext
12 lines
139 B
Plaintext
/**
|
|
* @name Test for generics
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Class c
|
|
where
|
|
c.hasName("A") and
|
|
not c instanceof UnboundGenericClass
|
|
select c
|