Files
openide/java/java-tests/testData/codeInsight/surroundWithQuotesStringAnnotationParameterValue/beforeNotAvailable3.java

14 lines
171 B
Java

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