mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
Java: add missing newline error on text block fragment (IJ-CR-113878)
GitOrigin-RevId: a62cddecc6b6974ffedbcfcd179fe675aa74112e
This commit is contained in:
committed by
intellij-monorepo-bot
parent
bf4ea53ca5
commit
0aebe230e8
@@ -1,9 +1,9 @@
|
||||
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 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">"""</error>\\n """;
|
||||
|
||||
String s9 = "\s";
|
||||
String s10 = " <error descr="Illegal escape character in string literal">\ </error>";
|
||||
|
||||
Reference in New Issue
Block a user