fpc/tests/test/tparray21.pp
Jonas Maebe de75b34dba * fixed another IE with indexing bitpacked arrays of composite types,
this time with constant rather than variable indices

git-svn-id: trunk@7599 -
2007-06-08 13:53:01 +00:00

16 lines
256 B
ObjectPascal

{$mode macpas}
program FatalError_200301231;
type
note_name_type = packed array[0..17] of string[2];
var
nn: note_name_type;
s: string[ 80];
begin
nn[1]:= 'x';
s:=concat( 'y', nn[ 1]);
if (s <> 'yx') then
halt(1);
end.