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

11 lines
216 B
Java

class Simple {
void f(String a, String b) {
//a before arg
//comment
//after literal
/*before arg*/
String s = java.text.MessageFormat.format("a:{0}b:{1}", a, b); //end comment
}
}