Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8515e6cae799e77c9350445a3861b1f9527c281a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package p;

class A1 implements A{
	public void m(int i, boolean b){
	}
	private void foo(){
		m(2, true);
	}
}
class B extends A1{
	public void m(int j, boolean b){
		m(6, false);
		super.m(4, true);
	}
}
interface A {
	public void m(int i, boolean b);
}

Back to the top