mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
GitOrigin-RevId: 970d43e2694bccc0ca98c7ad3abb61477e4d937f
13 lines
254 B
Java
13 lines
254 B
Java
// "Replace with text block" "true-preview"
|
|
import org.intellij.lang.annotations.Language;
|
|
|
|
class TextBlockMigration {
|
|
|
|
void literalWithEscapedQuotes() {
|
|
@Language("JAVA") String s = """
|
|
class Foo {
|
|
}
|
|
""";
|
|
}
|
|
|
|
} |