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

13 lines
289 B
Java

/**
* @test /nodynamiccopyright/
* @bug 7169362
* @author sogoel
* @summary Foo is not a repeatable annotation but used as one.
* @compile/fail/ref=NoRepeatableAnno.out -XDrawDiagnostics NoRepeatableAnno.java
*/
@interface Foo {}
@Foo @Foo
public class NoRepeatableAnno {}