blob: 1545223fa680f32442c68d6542ee7908cfaa5105 [file] [log] [blame]
package test0430;
public class A {
private A() {
this(coo2());
}
private A(int i) {
}
private int coo2() {
return 7;
}
}