mirror of
https://github.com/github/codeql.git
synced 2026-04-28 10:15:14 +02:00
9 lines
227 B
Plaintext
9 lines
227 B
Plaintext
import csharp
|
|
|
|
// Source declaration and unbound generic must be unique
|
|
where not exists(ConstructedGeneric cg |
|
|
strictcount(cg.getSourceDeclaration+()) > 1 or
|
|
strictcount(cg.getUnboundGeneric()) > 1
|
|
)
|
|
select "Test passed"
|