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

Back to the top