mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
16 lines
284 B
Java
16 lines
284 B
Java
class A {
|
|
void foo() {
|
|
final int abc = 0;
|
|
boolean b = false;
|
|
<selection>
|
|
if (b) {
|
|
class T {
|
|
void bar() {
|
|
System.out.println(abc);
|
|
}
|
|
}
|
|
return;
|
|
} </selection>
|
|
System.out.println("");
|
|
}
|
|
} |