Files
openide/java/java-tests/testData/codeInsight/concatenationToMessageFormat/comments.java
Anna.Kozlova 95a9e27bd8 preserve comments: concatenation to message format
compose tests into one
2017-11-22 19:42:59 +01:00

10 lines
208 B
Java

class Simple {
void f(String a, String b) {
String s = "a:" +//a before arg
a <caret>+ //comment
"b:"//after literal
+ /*before arg*/b; //end comment
}
}