Skip to main content
summaryrefslogtreecommitdiffstats
blob: bd03d2f4d4ff76674c870ac0eeff57ca81076193 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package p;
class A{
	protected void m(int i, boolean b){
	}
	private void foo(){
		m(2, true);
	}
}
class B extends A{
	protected void m(int j, boolean b){
		m(6, false);
		super.m(4, true);
	}
}

Back to the top