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

Back to the top