mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 09:46:39 +07:00
GitOrigin-RevId: f27d1fcdb4e5929018aa15f75a057f14c7c8f927
17 lines
202 B
Java
17 lines
202 B
Java
class X {
|
|
private final int i;
|
|
|
|
public X() {
|
|
|
|
i = newMethod();
|
|
|
|
}
|
|
|
|
private int newMethod() {
|
|
final int i;
|
|
i = 0;
|
|
System.out.println(i);
|
|
return i;
|
|
}
|
|
}
|