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

12 lines
164 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()