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

13 lines
268 B
Plaintext

/**
* @name Test for indexers
*/
import csharp
from Indexer i
where i.getDeclaringType().hasQualifiedName("Indexers.Grid")
and i.getType() instanceof IntType
and i.getParameter(1).getName() = "col"
and i.getParameter(1).getType() instanceof IntType
select i