mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 11:09:39 +02:00
17 lines
237 B
ObjectPascal
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.
|