This commit is contained in:
peter 2001-01-13 11:14:16 +00:00
parent 3baf37cbd1
commit a1f1b9c441

10
tests/webtbs/tw1351.pp Normal file
View File

@ -0,0 +1,10 @@
procedure Test(ParArr :array of const);
begin
writeln(ParArr[0].vtype,' ',vtObject,' ',vtclass);
if ParArr[0].vtype<>vtObject then
halt(1);
end;
begin
Test([TObject.Create]);
end.