mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 01:41:11 +07:00
GitOrigin-RevId: 970d43e2694bccc0ca98c7ad3abb61477e4d937f
12 lines
307 B
Java
12 lines
307 B
Java
// "Replace with text block" "true-preview"
|
|
|
|
class TextBlockMigration {
|
|
|
|
void concatenationWithNonStrings() {
|
|
String answer = "The answer to the meaning of life,<caret>\n" +
|
|
"the universe,\n" +
|
|
"and everything\n" +
|
|
"is " + 42 + '\n';
|
|
}
|
|
|
|
} |