Browse Source

* test for already resolved issue #38874

florian 3 years ago
parent
commit
ac53225817
1 changed files with 12 additions and 0 deletions
  1. 12 0
      tests/webtbf/tw38874.pp

+ 12 - 0
tests/webtbf/tw38874.pp

@@ -0,0 +1,12 @@
+{ %fail }
+program ConstString;
+
+procedure Test;
+const TestString='abc';'def';
+begin
+  writeln(TestString);
+end;
+
+begin
+  Test;
+end.