mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-15 22:26:39 +07:00
GitOrigin-RevId: 66780cacc839496911748c788ef8ca79a6cd0c9d
7 lines
393 B
Java
7 lines
393 B
Java
class C {
|
|
String empty = """
|
|
""";
|
|
String invalid1 = <error descr="Illegal text block start: missing new line after opening quotes">""""""</error>;
|
|
String invalid2 = <error descr="Illegal text block start: missing new line after opening quotes">""" """</error>;
|
|
String invalid3 = <error descr="Illegal text block start: missing new line after opening quotes">"""\\n """</error>;
|
|
} |