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

20 lines
290 B
Java

/*
* @test /nodynamiccopyright/
* @bug 4901268
* @summary JSR175 (5): annotations must be "constants"
* @author gafter
*
* @compile/fail/ref=Constant.out -XDrawDiagnostics Constant.java
*/
package Constant;
@T(a = X.x)
@interface T {
int a();
}
class X {
static int x;
}