This commit is contained in:
peter 2000-08-13 14:55:58 +00:00
parent c11ee377bb
commit 11af7f6f18

13
tests/tbs/tbs0341.pp Normal file
View File

@ -0,0 +1,13 @@
procedure IncLimit(var B: Byte; const Limit: Byte; const Incr: Byte);
begin
end;
procedure IncLimit(var B: Longint; const Limit: Longint; const Incr: Longint);
begin
end;
var
b : byte;
begin
inclimit(b,128,3);
end.