Browse Source

no message

florian 20 years ago
parent
commit
fa131cbb38
1 changed files with 19 additions and 0 deletions
  1. 19 0
      tests/webtbf/tw3531.pp

+ 19 - 0
tests/webtbf/tw3531.pp

@@ -0,0 +1,19 @@
+{ Source provided for Free Pascal Bug Report 3531 }
+{ Submitted by "Christian Iversen" on  2005-01-07 }
+{ e-mail: [email protected] }
+Program Bug;
+
+Type
+  XEscapeResolve =
+    Record
+      C : Char;
+      E : String;
+    End;
+
+Const
+  XStandardFold1 : Array Of longint = (1);
+  XStandardFold2 : Array Of XEscapeResolve =
+  ((C: 'n'; E: #10));
+
+Begin
+End.