peter 25 anni fa
parent
commit
11af7f6f18
1 ha cambiato i file con 13 aggiunte e 0 eliminazioni
  1. 13 0
      tests/tbs/tbs0341.pp

+ 13 - 0
tests/tbs/tbs0341.pp

@@ -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.
+