Skip to main content
summaryrefslogtreecommitdiffstats
blob: 63d53d9cbfc9c4273306f11f42a0eecae5562688 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package p;
abstract class A{
	abstract void m(int i, int x);
}
class B {
	void m(int i) {}
}
team class MyTeam {
	protected class R extends A playedBy B {
		void m(int i, int x) -> void m(int i);
	}
}

Back to the top