Files
codeql/csharp/ql/test/library-tests/expressions/Call3.ql
2018-12-20 10:19:59 +01:00

15 lines
278 B
Plaintext

/**
* @name Test for calls
*/
import csharp
from StaticConstructor c, MethodCall e
where
c.hasName("Class") and
e.getEnclosingCallable() = c and
e.hasNoArguments() and
e.getEnclosingStmt() = c.getStatementBody().getStmt(1) and
exists(e.getQualifier())
select c, e