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

15 lines
211 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