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