Files
openide/java/java-tests/testData/codeInsight/concatenationToMessageFormat/textblock.after.java
Artemiy Sartakov 5136d5999f TextBlockMigration: support two new escape sequences (IDEA-230758)
GitOrigin-RevId: ab4d06cd4d6c198fcfc94d67e1e758de291648c1
2020-01-29 04:45:09 +00:00

11 lines
215 B
Java

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