mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
17 lines
345 B
Java
17 lines
345 B
Java
class A {
|
|
void foo() {
|
|
String s = "";
|
|
try {
|
|
<selection>s = "a";
|
|
bar();</selection>
|
|
s = "b";
|
|
} catch (Exception e) {
|
|
System.out.println(e);
|
|
}
|
|
System.out.println(s);
|
|
}
|
|
|
|
void bar() throws Exception {
|
|
if (true) throw new Exception();
|
|
}
|
|
} |