blob: 3362abc3702b21234db940dec4334a4f6d4a79fe [file] [log] [blame]
package p;
class A{
private int i;
A(){
this(5);
}
A(int u){
super();
i= 0;
}
void f(){
}
}