fpc/tests/test/tint2str2.pp
florian 12cd76d0e8 * test header fixed
git-svn-id: trunk@4969 -
2006-10-18 20:35:53 +00:00

16 lines
129 B
ObjectPascal

{ %fail }
{$mode fpc}
procedure test(s: string);
begin
halt(0);
end;
var
l: longint;
begin
l := 'abcd';
test(l);
end.