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

23 lines
402 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 3719 }
{ Submitted by "Markus Beth" on 2005-03-01 }
{ e-mail: markus.beth@zkrd.de }
{$ifdef fpc}{$mode delphi}{$endif}
uses
Classes;
begin
with TStringList.Create do try
Delimiter := ' ';
QuoteChar := #0;
Add('1');
Add('2');
WriteLn(DelimitedText);
if DelimitedText<>'1 2' then
halt(1);
finally
Free;
end;
end.