summaryrefslogtreecommitdiffstats
path: root/tests/features169/itdInnerTypes/Simplest3.java
blob: 4a1c2b5c64e231572c35090ee938c6d7d99b2930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
aspect Targeter {
  intertype Basic {
    public void foo() {} // declared on Basic
  }
  //static aspect C {}
}

class Basic {
  public static void main(String[] argv) {
    new Basic().foo();
  }
}