mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
16 lines
271 B
Java
16 lines
271 B
Java
public class A {
|
|
public class <caret>Inner {
|
|
private int a = 0;
|
|
|
|
public Inner(int arg) {
|
|
int j = 5;
|
|
while (j < 10) j++;
|
|
a = arg * j;
|
|
}
|
|
}
|
|
|
|
public void test() {
|
|
Inner i = new Inner(1);
|
|
}
|
|
}
|