aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs169/pr44365/SimpleInner.java
blob: 60a30e7e1fc310dd45bbbbdbac365c417bd1084d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
public class SimpleInner {
}

enum Foo {
}

@interface WibbleAnno {
}

class Bar {
  public class Inner {}
  Runnable r = new Runnable() {
    public void run() {}
  };
}

interface I {
}

aspect X {
  before(): within(is(InnerType)) && staticinitialization(*) {}
}