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

16 lines
142 B
ObjectPascal

var i : integer;
procedure Test(a : 1..4);
begin
i := 1;
end;
procedure Test(a : byte);
begin
i := 2;
end;
begin
Test(2);
assert(i=2);
end.