Files
codeql/csharp/ql/test/library-tests/indexers/Indexers12.ql
2020-10-07 14:53:51 +02:00

9 lines
224 B
Plaintext

import csharp
from Indexer i, Accessor a, string s
where
i.getDeclaringType().hasQualifiedName("System", s) and
s.regexpMatch("Tuple<,*>") and
a = i.getAnAccessor()
select i.toStringWithTypes(), a.toStringWithTypes()