mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
test++
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user