-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
5.0
-
generic
-
generic
Name: viR10068 Date: 01/23/2004
The jdk1.5.0-b35 allows to use the annotation marked as
@Target(ElementType.ANNOTATION_TYPE) to annotate class,
field, method etc.
The affected tests are:
lang/ANNOT/annot049/annot04903m7/annot04903m7.html
lang/ANNOT/annot049/annot04904m7/annot04904m7.html
lang/ANNOT/annot049/annot04905m7/annot04905m7.html
lang/ANNOT/annot049/annot04906m7/annot04906m7.html
lang/ANNOT/annot049/annot04907m7/annot04907m7.html
lang/ANNOT/annot049/annot04908m7/annot04908m7.html
The test source:
--------------------------- Test.java -----------------------------------
import java.lang.annotation.*;
@Target(ElementType.ANNOTATION_TYPE) @interface iMark{}
@iMark class Test {
@iMark void m() {}
@iMark String str = "qwe";
@iMark enum ecnt {str};
}
-------------------------------------------------------------------------
Execution log (no errors):
% jdk1.5.0-b35/solaris-sparc/bin/javac -version -source 1.5 -target 1.5 Test.java
javac 1.5.0-beta2
%
======================================================================
- duplicates
-
JDK-4973504 Compiler allows Inherited meta-attribute on local variable declaration.
-
- Resolved
-