Files
openide/java/java-tests/testData/codeInsight/concatenationToMessageFormat/textblock.after.java
T
Artemiy Sartakov 37137f76ac AbstractJavaBlock: added formatting for java text blocks (IDEA-216737)
GitOrigin-RevId: 091cd09f3dac6b9d3dc130d5e2e65bee5fd88792
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);
}
}