mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
15 lines
203 B
Java
15 lines
203 B
Java
class C {
|
|
final int x1;
|
|
int x2;
|
|
|
|
public C(int x1, int x2) {
|
|
this(x1);
|
|
this.x2 = x2;
|
|
}
|
|
|
|
private C(int x1) {
|
|
System.out.println();
|
|
this.x1 = x1;
|
|
}
|
|
|
|
} |