Browse Source

* Test for triple-quoted string needs to be ended by triple-quoted string case

Michaël Van Canneyt 3 weeks ago
parent
commit
8a5ad129c9
1 changed files with 13 additions and 0 deletions
  1. 13 0
      tests/test/tmultilinestring36.pp

+ 13 - 0
tests/test/tmultilinestring36.pp

@@ -0,0 +1,13 @@
+{ %Fail}
+{$mode delphi}
+var s : string;
+
+begin
+  s:='''
+Test
+Multi
+Line
+`;
+
+  writeln(s);
+end.