aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/specs/aggr2.ads
blob: 00bc44f15d82a14949cb548f7fce329a8c1e4962 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- { dg-do compile }

package Aggr2 is

   type Buffer is array (Positive range <>) of Boolean;
   for Buffer'Alignment use 4;

   type Buffer_Ptr is access Buffer;

   subtype My_Buffer is Buffer (1 .. 2);

   P : Buffer_Ptr := new My_Buffer'(Others => False);

end Aggr2;