mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
11 lines
177 B
Java
11 lines
177 B
Java
class C {
|
|
final int x1;
|
|
int x2;
|
|
|
|
public C(int x1, int x2) {
|
|
<selection>System.out.println();
|
|
this.x1 = x1;</selection>
|
|
this.x2 = x2;
|
|
}
|
|
|
|
} |