diff --git a/jadx-core/src/test/java/jadx/tests/integration/trycatch/TestUnreachableCatch2.java b/jadx-core/src/test/java/jadx/tests/integration/trycatch/TestUnreachableCatch2.java index e40750d7ab1..c1f275bdb47 100644 --- a/jadx-core/src/test/java/jadx/tests/integration/trycatch/TestUnreachableCatch2.java +++ b/jadx-core/src/test/java/jadx/tests/integration/trycatch/TestUnreachableCatch2.java @@ -50,8 +50,8 @@ public void close() throws IOException { @Test public void test() { - allowWarnInCode(); - setFallback(); + // TODO: result code not compilable because of 'break' after 'throw' + disableCompilation(); String code = getClassNode(UnusedExceptionHandlers1.class).getCode().toString(); assertThat(code, containsString("IOException")); }