Sfoglia il codice sorgente

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

Michaël Van Canneyt 3 settimane fa
parent
commit
8a5ad129c9
1 ha cambiato i file con 13 aggiunte e 0 eliminazioni
  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.