fpc/tests/webtbs/tw3423.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

17 lines
237 B
ObjectPascal

{ 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:=a+s;
end.