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

aspect X {
  public static class Simplest4.Inner {
    static int number = 42;
    public void m() {
//      System.out.println(abc);
    }
  }
}