Files
openide/java/java-tests/testData/codeInsight/concatenationToMessageFormat/textblock.java
T
Bas Leijdekkers a12eee9fbc preserve text blocks when converting to (message)format string (IDEA-217253, IDEA-218831)
and use new text block escaping

GitOrigin-RevId: cc8eea8aa0c638b967e40b6a6b4b9dea1cfed61d
2019-08-02 00:04:00 +03:00

11 lines
176 B
Java

class C {
void x(int a, int b) {
String s = """
the text\n block
line2
""" +
a + b + <caret>//keep me
" \"to\" be";
}
}