mirror of
https://github.com/github/codeql.git
synced 2026-04-07 08:04:03 +02:00
10 lines
240 B
Plaintext
10 lines
240 B
Plaintext
import csharp
|
|
|
|
query predicate implicitlyTypedObjectCreation(ObjectCreation creation) {
|
|
creation.isImplicitlyTyped()
|
|
}
|
|
|
|
query predicate implicitlyTypedDelegateCreation(ExplicitDelegateCreation creation) {
|
|
creation.isImplicitlyTyped()
|
|
}
|