Files
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>
""";
}
}