23 lines
404 B
Java
Raw Normal View History

2007-12-01 00:00:00 +00:00
/*
* @test /nodynamiccopyright/
2007-12-01 00:00:00 +00:00
* @bug 5044125
* @summary javac allows cyclic annotation interfaces with arrays
* @author gafter
*
* @compile/fail/ref=Cycle3.out -XDrawDiagnostics Cycle3.java
2007-12-01 00:00:00 +00:00
*/
package cycle3;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.*;
@Retention(RUNTIME)
@interface A {
A[] values() default { @A };
2007-12-01 00:00:00 +00:00
}
@A
2007-12-01 00:00:00 +00:00
class Main {
}