2016-11-21 Thomas Preud'homme <thomas.preudhomme@arm.com>
[official-gcc.git] / gcc / testsuite / gnat.dg / specs / array1.ads
blob1964f742ec0b693686d8c261932a520b1fc5569a
1 -- { dg-do compile }
3 pragma Restrictions (No_Elaboration_Code);
5 package Array1 is
7 type Arr is array (Positive range <>) of Boolean;
8 A : Arr (1 .. 2 ** 29);
10 end Array1;