mirror of
https://github.com/github/codeql.git
synced 2026-04-26 01:05:15 +02:00
12 lines
183 B
Plaintext
12 lines
183 B
Plaintext
/**
|
|
* @name Test for indexers
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Class c
|
|
where
|
|
c.hasFullyQualifiedName("Indexers", "BitArray") and
|
|
count(Indexer i | i.getDeclaringType() = c) = 1
|
|
select c
|