Files
openide/java/java-tests/testData/inspection/trailingWhitespacesInTextBlock/BadTextBlock.java
Tagir Valeev 1fd43a5df9 [java] IDEA-349062 Allow "Join lines" for text blocks to convert to a regular string
GitOrigin-RevId: d435698b23f56ef9ce05305266118c0e75bdb9ef
2024-03-13 21:17:32 +00:00

8 lines
257 B
Java

class BadTextBlock {
void x() {
String s = <error descr="Illegal text block start: missing new line after opening quotes">"""</error>a
bad bad bad<warning descr="Trailing whitespace characters inside text block"> </warning>
""";
}
}