Files
codeql/csharp/ql/test/library-tests/csharp8/DefaultInterfaceMethods.ql
2019-11-15 10:13:04 +00:00

11 lines
247 B
Plaintext

import csharp
class DefaultInterfaceMethod extends Callable {
DefaultInterfaceMethod() {
this.hasBody() and
this.getDeclaringType() instanceof Interface
}
}
query predicate defaultInterfaceMethods(DefaultInterfaceMethod m) { any() }