Files
openide/java/java-tests/testData/inspection/textBlockBackwardMigration/beforeEscapeSequence.java
T

11 lines
223 B
Java

// "Replace with regular string literal" "true"
class TextBlockMigration {
void escapeSequence() {
String oneLineTextBlock = """
\u005c"this is one "line"\n text <caret>block\134\u005c\\"
""";
}
}