summaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr106554/A.aj
blob: ad657d7014b4418bc671b0109be144501d657e22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
public aspect A {
  interface I { 
    // These fields will have their initialization logic stuffed in a static
    // initializer in A$I
    public static final String[] str = new String[] { "a","b"};
    public static final String[] str2 = str;
  }

  static Class[] classes = { I.class };

  static Object f = new Integer(1);

  public static void main(String args[]) {
    System.out.println("test = "+f);
    System.err.println("A:"+A.aspectOf());
  }
}

aspect StopsInit pertypewithin(A) {
  // These should match nothing in A$I
  before() : staticinitialization(*) {}
  before() : set(* *) && within(A$I) {}
  before() : get(* *) && within(A$I) {}
}