Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: dae754fe745446b5e3e1abb3dee370b28f6416a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package p;

class A {
	void m(B b) {
	}
}

class B extends A {
}

class C extends B {
	void test(B b) {
		super.m(b);
	}
}

Back to the top