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