summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/tail_call_p.ads
blob: 1665bc30c5597ea626df29376fb12379aa87d357 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package Tail_Call_P is

  type T is new Natural;

  type Index is (First, Second);

  type A is array (Index) of T;

  My_Array : A := (0, 0);

  procedure Insert (Into : A; Element : T; Value : T);

end Tail_Call_P;