Jelajahi Sumber

* crash with empty strigns

peter 21 tahun lalu
induk
melakukan
15e2b21671
1 mengubah file dengan 17 tambahan dan 0 penghapusan
  1. 17 0
      tests/webtbs/tw3423.pp

+ 17 - 0
tests/webtbs/tw3423.pp

@@ -0,0 +1,17 @@
+{ Source provided for Free Pascal Bug Report 3423 }
+{ Submitted by "Bram Kuijvenhoven" on  2004-12-02 }
+{ e-mail: [email protected] }
+{$MODE OBJFPC}{$H+}
+
+var
+  a:ansistring;
+  s:shortstring;
+
+begin
+
+  a:='';
+  s:='';
+  a+=s;
+
+end.
+