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

14 lines
275 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