test/tools/javac/annotations/typeAnnotations/failures/BadCast.java

Print this page

        

*** 3,14 **** --- 3,17 ---- * @bug 8006775 * @summary A cast cannot consist of only an annotation. * @author Werner Dietl * @compile/fail/ref=BadCast.out -XDrawDiagnostics BadCast.java */ + import java.lang.annotation.*; + class BadCast { static void main() { Object o = (@A) ""; } } + @Target(ElementType.TYPE_USE) @interface A { }