blob: 374a143d26a45979fb5eb70757ebd377b2e7ba82 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 6843077 8006775
* @summary check for invalid annotatins given the target
* @author Mahmood Ali
* @compile/fail/ref=InvalidLocation.out -XDrawDiagnostics InvalidLocation.java
*/
class InvalidLocation<K extends @A Object> {
}
@java.lang.annotation.Target(java.lang.annotation.ElementType.TYPE)
@interface A { }