summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/surroundWithQuotesStringAnnotationParameterValue/afterChar2.java
blob: 6167c3873f85ab7e3e51db87a6785c649364d39d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// "Surround annotation parameter value with quotes" "true"
class X {

  @interface MyAnnotation {
    String value();
  }

  @MyAnnotation(value= "\n")
  void m() {

  }

}