Skip to main content
summaryrefslogtreecommitdiffstats
blob: 90559dfa3bcbe56d648f0332a2669908ff8e8e91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
public team class T {
	protected class RSuper playedBy B1 {
		
	}
	protected class RSub extends RSuper playedBy B2 {
		String getS1() -> get String s;
		String getS2() -> String getS();
		void foo()
		{
			System.out.println(getS1()+getS2());
		}
	}
}

Back to the top