pascalabcnet/TestSuite/units/u_params2.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

13 lines
169 B
ObjectPascal

unit u_params2;
procedure Test(params a : array of ^integer);
begin
assert(a[0]^=1);
assert(a[1]^=2);
end;
var i,j : integer;
begin
i := 1; j := 2;
Test(@i,@j);
end.