mirror of
https://github.com/github/codeql.git
synced 2026-04-30 11:15:13 +02:00
12 lines
205 B
Plaintext
12 lines
205 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
|
|
|