mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
16 lines
336 B
Java
16 lines
336 B
Java
class Test {
|
|
void m(boolean b) {
|
|
int x = 42;
|
|
try {
|
|
<selection>
|
|
if(b) {
|
|
x = 23;
|
|
throw new Exception();
|
|
}
|
|
</selection>
|
|
} catch(Exception e) {
|
|
System.out.println(x);
|
|
}
|
|
}
|
|
|
|
} |