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

13 lines
173 B
Java

// "Surround annotation parameter value with quotes" "true"
class X {
@interface MyAnnotation {
String value();
}
@MyAnnotation(value= "\n")
void m() {
}
}