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

enum Foo {
}

@interface WibbleAnno {
}

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

interface I {
}

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