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

13 lines
254 B
Java

// "Replace with text block" "true-preview"
import org.intellij.lang.annotations.Language;
class TextBlockMigration {
void literalWithEscapedQuotes() {
@Language("JAVA") String s = """
class Foo {
}
""";
}
}