Files
codeql/csharp/ql/test/library-tests/indexers/Indexers6.ql
2018-12-20 10:19:59 +01:00

14 lines
240 B
Plaintext

/**
* @name Test for indexers
*/
import csharp
from Indexer i
where
i.getDeclaringType().hasQualifiedName("Indexers.BitArray") and
i.getType() instanceof BoolType and
i.getGetter().hasBody() and
i.getSetter().hasBody()
select i