1-- { dg-do compile }
2
3package aggr1 is
4   type Buffer_Array is array (1 .. 2 ** 23) of Integer;
5   type Message is record
6      Data : Buffer_Array := (others => 0);
7   end record;
8end;
9