aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/class_wide5.adb
blob: 008273fa0ee9f43069eff411ec7862b8eb3441b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
--  { dg-do compile }

procedure Class_Wide5 is
   type B is interface;
   type B_Child is new B with null record;
   type B_Ptr is access B'Class;

   procedure P (Obj : B_Ptr) is begin null; end;
begin
   P (new B_child);  -- Test
end Class_Wide5;