blob: 04bba2333bd80b1e1f2ca984d5e2fe813749f3cc [file] [log] [blame]
// "Surround annotation parameter value with quotes" "true"
class X {
@interface MyAnnotation {
String value();
}
@MyAnnotation(tr<caret>ue)
void m() {
}
}