view gcc/testsuite/gnat.dg/aggr7.adb @ 143:76e1cf5455ef

add cbc_gc test
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 19:24:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

--  { dg-do compile }

procedure aggr7 is
   
   package P is
      type T is limited private;
      type TT is limited private;
      type TTT is tagged limited private;
   private
      type T is limited
          record
             Self : access T := T'Unchecked_Access;
          end record;
      type TT is tagged limited
          record
             Self : access TT := TT'Unchecked_Access;
          end record;
      type TTT is tagged limited
          record
             Self : access TTT := TTT'Unchecked_Access;
          end record;
   end P;
   
   package body P is
      X : T := (Self => <>);
      XX : TT := (Self => <>);
      XXX : TTT := (Self => <>);
      Y : T := (others => <>);
      YY : TT := (others => <>);
      YYY : TTT := (others => <>);
   end P;
begin
   null;
end aggr7;