Files
openide/java/java-tests/testData/codeInsight/concatenationToMessageFormat/textblock.java
T
2020-01-29 04:45:09 +00:00

11 lines
177 B
Java

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