mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-25 03:17:36 +07:00
d34083c8f4
GitOrigin-RevId: 299585eb47bbd5f5b14473aadd0290fc64ef0845
14 lines
720 B
Java
14 lines
720 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>;
|
|
String invalid4 = """
|
|
invalid escape <error descr="Illegal escape character in string literal">\</error>
|
|
continue;
|
|
""";
|
|
String invalid5 = """
|
|
\n\n\n\n<error descr="Illegal escape character in string literal">\</error>
|
|
""";
|
|
} |