Files
openide/java/java-tests/testData/inspection/textBlockMigration/afterConcatenationWithThreeQuotesInText.java
2023-10-30 10:30:18 +00:00

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
"\
"\
\"""";
}
}