2d18dda3f2
Reviewed-by: vromero
22 lines
375 B
Java
22 lines
375 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8138822
|
|
* @summary test that only Java 8+ allows repeating annotations
|
|
* @compile WrongVersion.java
|
|
* @compile --release 8 WrongVersion.java
|
|
*/
|
|
import java.lang.annotation.Repeatable;
|
|
|
|
@Ann(1) @Ann(2)
|
|
class C {
|
|
}
|
|
|
|
@Repeatable(AnnContainer.class)
|
|
@interface Ann {
|
|
int value();
|
|
}
|
|
|
|
@interface AnnContainer {
|
|
Ann[] value();
|
|
}
|