Files
codeql/csharp/ql/test/library-tests/generics/Generics16.ql
2018-08-02 17:53:23 +01:00

10 lines
146 B
Plaintext

/**
* @name Test for generics
*/
import csharp
from Class c
where c.hasName("Subtle")
and count(c.getAMethod()) = 3
select c, c.getAMethod()