Skip to main content
summaryrefslogtreecommitdiffstats
blob: fda64412908a5da7d9e35acdb1d83fe7416b5aaf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package compileorder;
public team class B {
        public class R playedBy A {
                void run() <- replace void run();
                callin void run() {
                        base.run();
                        System.out.println("R.run()");                  
                }
        }       
}

Back to the top