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

enum Foo {
}

@interface WibbleAnno {
}

class Bar {
}

interface I {
}

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