jdk-24/test/langtools/tools/javac/annotations/neg/Constant.java

20 lines
290 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 4901268
* @summary JSR175 (5): annotations must be "constants"
* @author gafter
*
* @compile/fail/ref=Constant.out -XDrawDiagnostics Constant.java
2007-12-01 00:00:00 +00:00
*/
package Constant;
2007-12-01 00:00:00 +00:00
@T(a = X.x)
@interface T {
int a();
}
class X {
static int x;
}