mirror of
https://github.com/github/codeql.git
synced 2026-03-06 07:36:47 +01:00
12 lines
149 B
Plaintext
12 lines
149 B
Plaintext
/**
|
|
* @name Test for generics
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Class c
|
|
where
|
|
c.hasName("Subtle") and
|
|
count(c.getAMethod()) = 3
|
|
select c, c.getAMethod()
|