* changed so it still fails after today's changes

git-svn-id: trunk@4587 -
This commit is contained in:
Jonas Maebe 2006-09-09 18:43:34 +00:00
parent b3ae0c51a4
commit 2d76bbf4db

View File

@ -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.