fpc/tests/webtbs/tw28089.pp
Jonas Maebe 3efd54cbd6 * removed interactiveness from the test
git-svn-id: trunk@30862 -
2015-05-15 19:45:18 +00:00

17 lines
177 B
ObjectPascal

program bug_StrPLCopy;
{$APPTYPE CONSOLE}
uses
SysUtils;
var
Buf: array[0..10] of Char;
begin
Buf[0] := 'A';
StrPLCopy(Buf, '', 0);
if Buf[0]<>#0 then
halt(1);
end.