Browse Source

* changed so it still fails after today's changes

git-svn-id: trunk@4587 -
Jonas Maebe 19 years ago
parent
commit
2d76bbf4db
1 changed files with 3 additions and 3 deletions
  1. 3 3
      tests/test/tparray1.pp

+ 3 - 3
tests/test/tparray1.pp

@@ -3,15 +3,15 @@
 {$mode macpas}
 
 type
-  tba = array[0..7] of boolean;
+  tba = packed array[0..7] of boolean;
   tkeymap = packed array[0..3] of tba;
 
-procedure test(var b: tba);
+procedure test(var b: boolean);
 begin
 end;
 
 var
   km: tkeymap;
 begin
-  test(km[1]);
+  test(km[1][2]);
 end.