mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 17:15:38 +07:00
GitOrigin-RevId: a312536b2e7b42aa2c7cf69beb896dd64b3a037e
15 lines
288 B
Java
15 lines
288 B
Java
// "Replace with text block" "true-preview"
|
|
|
|
class TextBlockMigration {
|
|
|
|
void concatenationWithThreeQuotes() {
|
|
String quotes = """
|
|
this concatenation contains
|
|
three quotes
|
|
one after another
|
|
"\
|
|
"\
|
|
\"""";
|
|
}
|
|
|
|
} |