summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/test/tparray21.pp
blob: 520eda48f444613f36039affaf5b8910e7c17e5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{$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.