blob: 92dc9c53b345fd2b63e911c3916e9ffa0d22a760 [file] [log] [blame]
// "Surround annotation parameter value with quotes" "true"
class X {
@interface MyAnnotation {
String value();
}
@MyAnnotation(value='<caret>x')
void m() {
}
}