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

public team class T {
	protected class R1 playedBy B {
		public final int f = 0;

		void callOut() -> void m(int i) with {
			f -> i 
		}
	}
	
	protected class R2 extends R1 {
		
	}
}

Back to the top