* mvoed to webtbf

This commit is contained in:
peter 2005-02-13 20:47:13 +00:00
parent cae7c0baee
commit 3c5d1bfa90

20
tests/webtbf/tw3644.pp Normal file
View File

@ -0,0 +1,20 @@
{ %fail }
{ Source provided for Free Pascal Bug Report 3644 }
{ Submitted by "Nicola Lugato" on 2005-02-10 }
{ e-mail: }
{$mode delphi}
procedure callme(y:array of const);
begin
end;
procedure callme2(x:array of const);
begin
callme([x]);
end;
begin
callme([1,2,'ciao']);
end.