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