re PR c++/84691 (internal compiler error: in poplevel_class, at cp/name-lookup.c...
[official-gcc.git] / gcc / testsuite / gnat.dg / specs / static_initializer5_pkg.ads
blob16a8f7277180c9c08382c26aea7a589172c83b3f
1 package Static_Initializer5_Pkg is
3 type Arr is array (Positive range <>) of Character;
5 type Buffer_Type (Length : Positive) is record
6 Content : Arr (1 .. Length);
7 end record;
9 type Buffer_Access is access Buffer_Type;
11 type Rec is tagged record
12 Buffer : Buffer_Access;
13 end record;
15 Null_Rec : constant Rec := (Buffer => null);
17 end Static_Initializer5_Pkg;