Explorar o código

+ check for internal error 8954 when passing arrays[1..1] as value
parameter

Jonas Maebe %!s(int64=25) %!d(string=hai) anos
pai
achega
a5dd1abd5f
Modificáronse 1 ficheiros con 12 adicións e 0 borrados
  1. 12 0
      tests/ts/ts010032.pp

+ 12 - 0
tests/ts/ts010032.pp

@@ -0,0 +1,12 @@
+type ta = array[1..1,1..100] of integer;
+
+procedure t(a: ta);
+begin
+end;
+
+var a: ta;
+
+begin
+  t(a);
+end.
+