fpc/tests/webtbs/tw3697.pp
tom_at_work f1733aed59 * fix of test tw3697 for unix platforms
git-svn-id: trunk@1776 -
2005-11-16 21:08:30 +00:00

17 lines
323 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 3697 }
{ Submitted by "Matthias Hryniszak" on 2005-02-26 }
{ e-mail: matthias@hryniszak.de }
uses
{$ifdef unix}cwstring, {$endif}SysUtils;
var
S: WideString;
begin
S := WideFormat('Test %s', ['string']);
if s<>'Test string' then
halt(1);
writeln('ok');
end.