mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-01 18:22:54 +00:00
8 lines
123 B
Java
8 lines
123 B
Java
class WithInnerAnnotation {
|
|
@interface Inner {
|
|
int bar() default 42;
|
|
}
|
|
WithInnerAnnotation() {
|
|
super();
|
|
}
|
|
} |