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