aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs169/pr44365/SimpleInner2.java
blob: 7f6819b3f0dea35a4fabb31a69f449f7e36370c0 (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 SimpleInner2 {
}

enum Foo {
}

@interface WibbleAnno {
}

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

interface I {
}

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