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

  @interface MyAnnotation {
    int value0();
    String value();
    long value1();
  }

  @MyAnnotation(value0 = 1, value= "1000L", value1 = 10L)
  void m() {

  }

}