no message

This commit is contained in:
florian 2005-02-26 10:20:39 +00:00
parent 9d5509f3f9
commit c55870ebb5

16
tests/webtbs/tw3697.pp Normal file
View File

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