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

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

with Ada.Containers.Formal_Doubly_Linked_Lists;

package Iter1 is
   package My_Lists is new Ada.Containers.Formal_Doubly_Linked_Lists
     (Element_Type => Integer);

   procedure Dummy (L : My_Lists.List);
end Iter1;