-
Bug
-
Resolution: Fixed
-
P2
-
7
-
b112
-
generic
-
generic
-
Verified
We have encountered JCK failures lately, which were tracked down to losing some annotations in class files.
Example:
@interface Simple { }
interface Test<@Simple T> { }
Compile it with an older compiler, then use javap to see RuntimeInvisibleAnnotations
Compile it with a recent compiler, then use javap, and see RuntimeInvisibleAnnotations not there.
Example:
@interface Simple { }
interface Test<@Simple T> { }
Compile it with an older compiler, then use javap to see RuntimeInvisibleAnnotations
Compile it with a recent compiler, then use javap, and see RuntimeInvisibleAnnotations not there.
- relates to
-
JDK-6993304 JavacTrees.getAttrContext not updated to Tree.Kind.{ANNOTATION_TYPE,ENUM,INTERFACE}
-
- Closed
-
-
JDK-6570730 com.sun.source.tree.ModifiersTree.getFlags() should return class type
-
- Closed
-