mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-12 01:00:49 +07:00
a12eee9fbc
and use new text block escaping GitOrigin-RevId: cc8eea8aa0c638b967e40b6a6b4b9dea1cfed61d
11 lines
176 B
Java
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";
|
|
}
|
|
} |