summaryrefslogtreecommitdiffstats
path: root/tests/features169/itdInnerTypes/MethodCall.java
blob: ce8649ecdb1ad532ec4585e7b32e50925b251c6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public class MethodCall {
 // static String abc = "hello world";
  public static void main(String []argv) {
    System.out.println(Inner.m());
  }
}

aspect X {
  public static class MethodCall.Inner {
    static int number = 42;
    public static Integer m() {
      return number;
    }
  }
}