aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/finalized.adb
blob: 36400d53ecc2f7b480a40c436a827ce0f7b2a815 (plain)
1
2
3
4
5
6
7
8
9
-- { dg-do compile }

with Ada.Finalization; use Ada.Finalization;
procedure finalized is
   type Rec is new Controlled with null record;
   Obj : access Rec := new Rec'(Controlled with null record);
begin
   null;
end;