mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 14:00:54 +07:00
GitOrigin-RevId: d435698b23f56ef9ce05305266118c0e75bdb9ef
8 lines
257 B
Java
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>
|
|
""";
|
|
}
|
|
} |