Files
codeql/java/ql/test/library-tests/successors/TestThrow2/TestThrow2.java
2018-08-30 10:48:05 +01:00

12 lines
145 B
Java

package successors;
class TestThrow2 {
native void thrower() throws Throwable;
{
try {
thrower();
} catch (Exception e) {
;
}
}
}