2018-03-15 Steven G. Kargl <kargl@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gnat.dg / tail_call_p.ads
blob1665bc30c5597ea626df29376fb12379aa87d357
1 package Tail_Call_P is
3 type T is new Natural;
5 type Index is (First, Second);
7 type A is array (Index) of T;
9 My_Array : A := (0, 0);
11 procedure Insert (Into : A; Element : T; Value : T);
13 end Tail_Call_P;