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