Files
lombok/test/transform/resource/after-ecj/WithInnerAnnotation.java
T

8 lines
123 B
Java

class WithInnerAnnotation {
@interface Inner {
int bar() default 42;
}
WithInnerAnnotation() {
super();
}
}