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

14 lines
277 B
Java

// "Replace with text block" "true-preview"
class TextBlockMigration {
void concatenationWithNonStrings() {
String answer = """
The answer to the meaning of life,
the universe,
and everything
is 42
""";
}
}