mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 01:09:46 +07:00
21 lines
622 B
Java
21 lines
622 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 s9 = "\s";
|
|
String s10 = <error descr="Illegal escape character in string literal">" \ "</error>;
|
|
|
|
String valid1 = """
|
|
\s
|
|
""";
|
|
|
|
String valid2 = """
|
|
\
|
|
""";
|
|
|
|
String backSlash1 = """
|
|
\u005c\""";
|
|
} |