mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
11 lines
177 B
Java
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";
|
|
}
|
|
} |