mirror of
https://github.com/github/codeql.git
synced 2026-03-22 15:36:48 +01:00
10 lines
137 B
Plaintext
10 lines
137 B
Plaintext
/**
|
|
* @name Test for generics
|
|
*/
|
|
import csharp
|
|
|
|
from Class c
|
|
where c.hasName("A")
|
|
and not(c instanceof UnboundGenericClass)
|
|
select c
|