mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
test++
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
class A {
|
||||
private int i;
|
||||
private int j;
|
||||
private int s;
|
||||
|
||||
public A(int i, int j) {
|
||||
this(i);
|
||||
this.j = j;
|
||||
}
|
||||
|
||||
private A(int i) {
|
||||
this.i = i;
|
||||
}
|
||||
|
||||
public A(int i, String s) {
|
||||
this.s = s;
|
||||
this.i = i;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user