mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-20 11:50:49 +07:00
17 lines
200 B
Java
17 lines
200 B
Java
class X {
|
|
private final int i;
|
|
|
|
public X() {
|
|
|
|
i = newMethod();
|
|
|
|
}
|
|
|
|
private int newMethod() {
|
|
int i;
|
|
i = 0;
|
|
System.out.println(i);
|
|
return i;
|
|
}
|
|
}
|