Skip to main content
summaryrefslogtreecommitdiffstats
blob: d5511ac0483048a75b0e74dc02fdb09fc1cd28ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package p;

class A<T> {
	void a(A<T> a){}
}

class B<T> extends A<T> {
	protected void m() { 
		a(this);
	}
}

Back to the top