blob: b434e4774a825557b6b3fe3d6613dfd457e22bbb [file] [log] [blame]
// "Surround annotation parameter value with quotes" "true"
class X {
@interface MyAnnotation {
int value0();
String value();
long value1();
}
@MyAnnotation(value0 = 1, value= "1000L", value1 = 10L)
void m() {
}
}