mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 18:58:31 +07:00
java: dedicated text blocks test
make tests on preview features disconnected from language level to make them evolve easily GitOrigin-RevId: b92e4d8eeb4b7ef71e5fedd18c06fbe213e9dc9e
This commit is contained in:
committed by
intellij-monorepo-bot
parent
89fa4186d6
commit
d02e7ed0b1
@@ -0,0 +1,7 @@
|
||||
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>;
|
||||
}
|
||||
Reference in New Issue
Block a user