package Class_Wide2 istype Root_1 (V :Integer)is tagged recordnull;end record;type Child is new Root_1 (1)with null record;type Class_Acc is access all Child'Class;type Grand_Child is new Child with recordnull;end record;procedure Initialize;end Class_Wide2;