Skip to main content
summaryrefslogtreecommitdiffstats
blob: a475abd0e7cb69b771605ad7f4a972c46e8c78bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package p;
class A{
	A(int i){
	}
}
class B extends A{
	B(){
		super(1);
	}
}

Back to the top