-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
9
Type annotations on array dimensions does not seem to be available during annotation processing. The type of the following field
@Foo(0) String @Foo(1)[] @Foo(2)[] @Foo(3)[] field;
is printed as
@Foo(0) String[][][]
@Foo(0) String @Foo(1)[] @Foo(2)[] @Foo(3)[] field;
is printed as
@Foo(0) String[][][]
- relates to
-
JDK-8068737 ArrayType prints element type post order
- Closed