mirror of
https://github.com/github/codeql.git
synced 2026-03-23 07:56:54 +01:00
14 lines
276 B
Plaintext
14 lines
276 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
|
|
|