Merge branch '5.3.x'

This commit is contained in:
Sam Brannen
2022-10-11 19:39:20 +02:00
2 changed files with 19 additions and 4 deletions

View File

@@ -181,7 +181,7 @@ class NestedRepeatableAnnotationsTests {
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.METHOD, ElementType.ANNOTATION_TYPE })
@Repeatable(A.Container.class)
public @interface A {
@interface A {
int value() default 0;
@@ -197,7 +197,7 @@ class NestedRepeatableAnnotationsTests {
@Repeatable(B.Container.class)
@A
@A
public @interface B {
@interface B {
@AliasFor(annotation = A.class)
int value();