mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +01:00
- Async streams (test only) - Unmanaged generic structs (extractor support) - Alternate interpolated strings (test only) - static local function (test only)
11 lines
245 B
Plaintext
11 lines
245 B
Plaintext
import csharp
|
|
|
|
class DefaultInterfaceMethod extends Method {
|
|
DefaultInterfaceMethod() {
|
|
this.hasBody() and
|
|
this.getDeclaringType() instanceof Interface
|
|
}
|
|
}
|
|
|
|
query predicate defaultInterfaceMethods(DefaultInterfaceMethod m) { any() }
|