jdk-24/test/langtools/tools/javac/annotations/neg/WrongTarget2.java
2017-09-12 19:03:39 +02:00

14 lines
316 B
Java

/*
* @test /nodynamiccopyright/
* @bug 4973504
* @summary Compiler allows Inherited meta-attribute on local variable declaration.
* @author gafter
*
* @compile/fail/ref=WrongTarget2.out -XDrawDiagnostics WrongTarget2.java
*/
import java.lang.annotation.Inherited;
class Field {{
@Inherited int vec;
}}