org.aspectj/tests/bugs169/pr44365/SimpleAnnotation.java
2010-03-19 15:42:02 +00:00

19 lines
190 B
Java

public class SimpleAnnotation {
}
enum Foo {
}
@interface WibbleAnno {
}
class Bar {
}
interface I {
}
aspect X {
before(): within(is(AnnotationType)) && staticinitialization(*) {}
}