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

11 lines
223 B
Plaintext

/**
* @name Test for try catches
*/
import csharp
from Method m
where m.getName() = "MainTryThrow"
and count(LocalVariable v | v.getEnclosingCallable() = m
and v.getName() = "e") = 1
select m