view gcc/testsuite/gnat.dg/access3.ads @ 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


package access3 is
   type IT is limited interface;
   type T is limited new IT with null record;
   
   type T2 is tagged limited null record;
   
   procedure Op
     (Obj_T2 : in out T2;
      Obj_IT : not null access IT'Class);
end access3;