Skip to main content
summaryrefslogtreecommitdiffstats
blob: 00f60b67255e2230ae2dff586de2b76d93c39b97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package p;
//to protected
class A{
	protected int m(int iii, boolean j){
		return m(m(iii, j), false);
	}
}
class B extends A{
	public int m(int iii, boolean j){
		return m(m(iii, j), false);
	}
}

Back to the top