re PR c++/84691 (internal compiler error: in poplevel_class, at cp/name-lookup.c...
[official-gcc.git] / gcc / testsuite / gnat.dg / array13.ads
blob0d0a8df501b199ca532aa104686abdcaa0b4eb45
1 package Array13 is
3 Max : Natural := 1;
5 type Arr is array (Natural range 0..Max) of Natural;
7 type T is record
8 A : Arr := (others => 0);
9 end record;
11 procedure Foo;
13 end Array13;