Files
openide/java/java-tests/testData/inspection/textBlockMigration/afterLiteralWithEscapedQuotes.java
2022-09-27 18:02:25 +00:00

10 lines
262 B
Java

// "Replace with text block" "true-preview"
class TextBlockMigration {
void literalWithEscapedQuotes() {
String s = """
{"key": "retracted-but-long", "sentences": ["some long sentence", "another long sentence"], "language":"en-US"}""";
}
}