Files
codeql/csharp/ql/test/library-tests/expressions/Default1.ql
2018-08-02 17:53:23 +01:00

13 lines
273 B
Plaintext

/**
* @name Test for default value expressions
*/
import csharp
from Method m, DefaultValueExpr e
where m.hasName("MainIsAsCast")
and e.getEnclosingCallable() = m
and e.getType() instanceof IntType
and e.getTypeAccess().getTarget() instanceof IntType
select m, e