Fix the new pr83361.c testcase
[official-gcc.git] / gcc / testsuite / gnat.dg / specs / static_initializer5.ads
blob29845ceebb2c9de72efe67ffee69818984ff196a
1 -- { dg-do compile }
3 with Static_Initializer5_Pkg; use Static_Initializer5_Pkg;
5 package Static_Initializer5 is
7 type Derived is new Rec with record
8 Target : Boolean;
9 end record;
11 Null_Derived : constant Derived := (Null_Rec with Target => False);
13 end Static_Initializer5;