blob: 7e4931578a58aa0a695b6c43fe83dcbe617dcfd9 [file] [log] [blame]
// "Surround annotation parameter value with quotes" "true"
class X {
@interface MyAnnotation {
String value();
}
@MyAnnotation(value= "x")
void m() {
}
}