view gcc/testsuite/gnat.dg/incomplete4_pkg.ads @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

package Incomplete4_Pkg is

   type Circular_Type;
   type Ptr is access Circular_Type;
   type Circular_Type is array (1..100) of Ptr;

   A : Circular_Type;

end Incomplete4_Pkg;