mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-14 16:06:46 +07:00
91f7445298
GitOrigin-RevId: e836468e05db28157713e9edd3c70382f8ecdebc
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>;
|
|
} |