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