Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gnat.dg / freezing1_pack.ads
blob74d88b8353f3d61d169011fc669e2cfc30c9c5b7
1 package Freezing1_Pack is
2 type T_Factory is abstract tagged private;
3 type I_Interface_Collection is interface;
5 Factory : constant T_Factory;
7 function Create_Collection
8 (Factory : in T_Factory) return I_Interface_Collection'Class;
10 type Implem is new I_Interface_Collection with null record;
12 private
13 type T_Factory is tagged null record;
15 Factory : constant T_Factory := T_Factory'(null record);
16 end Freezing1_Pack;