Browse Source

no message

florian 22 years ago
parent
commit
3bab3f9b02
1 changed files with 13 additions and 0 deletions
  1. 13 0
      tests/tbs/tb0438.pas

+ 13 - 0
tests/tbs/tb0438.pas

@@ -0,0 +1,13 @@
+{ %version=1.1 }
+{$mode objfpc}
+procedure p(a : array of const);
+
+  begin
+  end;
+
+var
+   a : array[0..25] of char;
+
+begin
+   p([a]);
+end.