blob: 534f5e297394687a879622d5c4711a5fe4420787 [file] [log] [blame]
/*
* @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;
}}