aboutsummaryrefslogtreecommitdiffstats
path: root/org.aspectj.ajdt.core/testdata/binaryParents/TestA/Bottom3.java
blob: ee16a765bbf89998ac4e292b556ee06dd479f3b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class Bottom3 extends Top3 {
  public Bottom3() {
    super();
  }

  public static void main(String[]argv) {
    Bottom3 b = new Bottom3();
    b.runit();
  }

  public void runit() {
    super.m("x");
  }
}