Files
openide/java/java-tests/testData/codeInsight/concatenationToMessageFormat/textblock.after.java
T
2019-10-03 04:32:43 +00:00

11 lines
213 B
Java

class C {
void x(int a, int b) {
//keep me
String s = java.text.MessageFormat.format("""
the text
block
line2
{0}{1} "to" be""", a, b);
}
}