mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-16 04:09:15 +02:00
* changed so it still fails after today's changes
git-svn-id: trunk@4587 -
This commit is contained in:
parent
b3ae0c51a4
commit
2d76bbf4db
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user