mirror of
https://github.com/github/codeql.git
synced 2026-03-27 01:38:22 +01:00
13 lines
273 B
Plaintext
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
|
|
|