Skip to main content
summaryrefslogtreecommitdiffstats
blob: 9e423224b93e68537cdf4ca792298eb7413420a9 (plain) (blame)
1
2
3
4
5
6
package p;
class A{
	void m(int i, int j){
		m(0, 1);
	}
}

Back to the top