Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4c0d45d6f0ff066f2ff0a432a26eeb4e7b0b3bd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package p;
//renaming B.m to k
public team class T
{
    public class R1 extends S playedBy B
    {
        public void m(){}
        
        m <- after b;
    }
    
    public class R2 extends R1
    {
        m <- after b;
    }
}

Back to the top