mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
13 lines
207 B
Plaintext
13 lines
207 B
Plaintext
/**
|
|
* @name Test for indexers
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Indexer i
|
|
where
|
|
i.getDeclaringType().hasQualifiedName("Indexers.BitArray") and
|
|
i.getType() instanceof BoolType and
|
|
i.getDimension() = 1
|
|
select i
|