Files

14 lines
172 B
Java

// "Surround annotation parameter value with quotes" "false"
class X {
@interface MyAnnotation {
int value();
}
@MyAnnotation(tr<caret>ue)
void m() {
}
}