* changed so it still fails after today's changes

git-svn-id: trunk@4589 -
This commit is contained in:
Jonas Maebe 2006-09-09 18:55:48 +00:00
parent be2351dd1a
commit 056eb5b012

View File

@ -3,13 +3,13 @@
{$mode macpas}
type
tba = array[0..7] of boolean;
tba = packed array[0..7] of boolean;
tkeymap = packed array[0..3] of tba;
var
p: pointer;
km: tkeymap;
begin
p := @km[2];
p := @km[2][3];
end.