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

enum Foo {
}

@interface WibbleAnno {
}

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

interface I {
}

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