Browse Source

* some special array constructor cases

peter 22 years ago
parent
commit
420fb26f38
1 changed files with 15 additions and 0 deletions
  1. 15 0
      tests/tbs/tb0436.pp

+ 15 - 0
tests/tbs/tb0436.pp

@@ -0,0 +1,15 @@
+{$mode objfpc}
+
+procedure pext(a:array of extended);
+begin
+end;
+
+procedure p(a:array of const);
+begin
+end;
+
+begin
+  p([0.0]);
+  p([pi]);
+  pext([0.0]);
+end.