summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/freezing1.ads
blob: f81bc7898680fa211f9a638f2c9df7e73e3b8863 (plain)
1
2
3
4
5
6
7
8
9
10
with Freezing1_Pack; use Freezing1_Pack;

package Freezing1 is
   type T is abstract tagged record
      Collection : access I_Interface_Collection'Class :=
        new I_Interface_Collection'Class'(Factory.Create_Collection);
   end record;

   procedure Foo;
end Freezing1;