Files
openide/java/java-tests/testData/refactoring/extractMethodNew/UseVarInOtherCatch.java
Alexandr Suhinin 0e860160e5 [extract method] fork tests
GitOrigin-RevId: 3aae5c738d48c38144f6a78c36738121831ae5a5
2020-03-31 12:32:01 +00:00

20 lines
608 B
Java

class A {
static class ExceptionA extends Exception{ ExceptionA(){ super(); } }
static class ExceptionB extends Exception{ ExceptionB(){ super(); } }
void foo(boolean a, boolean b) {
String s = "";
try {
s = "a";
if (a) throw new ExceptionA();
<selection>s = "b";
if (b) throw new ExceptionB();
s = "c";</selection>
System.out.println(s);
} catch (ExceptionA ea) {
throw new RuntimeException(s, ea);
} catch (ExceptionB eb) {
System.out.println(eb);
}
}
}