Files
2022-09-29 12:58:36 +00:00

12 lines
182 B
Java

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