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