Files
openide/java/java-tests/testData/inspection/textBlockBackwardMigration/beforeEscapeSequence.java
Artemiy Sartakov 5136d5999f TextBlockMigration: support two new escape sequences (IDEA-230758)
GitOrigin-RevId: ab4d06cd4d6c198fcfc94d67e1e758de291648c1
2020-01-29 04:45:09 +00:00

12 lines
234 B
Java

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