aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/WithInnerAnnotation.java
blob: ac9f161d113e5ab6c7ea4ba1c9f3d035389478bc (plain)
1
2
3
4
5
6
7
8
class WithInnerAnnotation {
  @interface Inner {
    int bar() default 42;
  }
  WithInnerAnnotation() {
    super();
  }
}