Daily bump.
[official-gcc.git] / gcc / testsuite / gnat.dg / incomplete4_pkg.ads
blob992986ee105d21fc4ad98bf26e81968371781ede
1 package Incomplete4_Pkg is
3 type Circular_Type;
4 type Ptr is access Circular_Type;
5 type Circular_Type is array (1..100) of Ptr;
7 A : Circular_Type;
9 end Incomplete4_Pkg;