* crash with empty strigns

This commit is contained in:
peter 2004-12-02 17:51:40 +00:00
parent 75019cf36a
commit 15e2b21671

17
tests/webtbs/tw3423.pp Normal file
View File

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