Files
2022-08-05 14:46:20 +00:00

13 lines
195 B
Java

// "Replace with text block" "true-preview"
class TextBlockMigration {
void literalWithNewLine() {
String foo = """
foo
bar
baz
""";
}
}