mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
21 lines
651 B
Java
21 lines
651 B
Java
class A {
|
|
private class Inner {
|
|
public void innerMethod() {
|
|
new Runnable() {
|
|
public void run() {
|
|
if (true) {
|
|
if (true) {
|
|
int i = 0;
|
|
if (i == 0) {
|
|
System.out.println("" + <selection>i * i</selection>);
|
|
} else {
|
|
System.out.println("" + i * i);
|
|
i = i * i;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}.run();
|
|
}
|
|
}
|
|
} |