mirror of
https://github.com/github/codeql.git
synced 2026-01-08 20:20:34 +01:00
12 lines
145 B
Java
12 lines
145 B
Java
package successors;
|
|
|
|
class TestThrow2 {
|
|
native void thrower() throws Throwable;
|
|
{
|
|
try {
|
|
thrower();
|
|
} catch (Exception e) {
|
|
;
|
|
}
|
|
}
|
|
} |