mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-20 17:49:25 +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}
|
{$mode macpas}
|
||||||
|
|
||||||
type
|
type
|
||||||
tba = array[0..7] of boolean;
|
tba = packed array[0..7] of boolean;
|
||||||
tkeymap = packed array[0..3] of tba;
|
tkeymap = packed array[0..3] of tba;
|
||||||
|
|
||||||
procedure test(var b: tba);
|
procedure test(var b: boolean);
|
||||||
begin
|
begin
|
||||||
end;
|
end;
|
||||||
|
|
||||||
var
|
var
|
||||||
km: tkeymap;
|
km: tkeymap;
|
||||||
begin
|
begin
|
||||||
test(km[1]);
|
test(km[1][2]);
|
||||||
end.
|
end.
|
||||||
|
Loading…
Reference in New Issue
Block a user