rt_gccstream/gcc/testsuite/gnat.dg/finalized.adb

10 lines
220 B
Ada

-- { 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;