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

10 lines
161 B
Plaintext

/**
* @name Test for throws
*/
import csharp
from Method m, ThrowStmt s
where s.getEnclosingCallable() = m
and m.getName() = "Divide"
select 1, s.getExpr()