1with Ada.Containers.Formal_Doubly_Linked_Lists;
2
3package Iter1 is
4   package My_Lists is new Ada.Containers.Formal_Doubly_Linked_Lists
5     (Element_Type => Integer);
6
7   procedure Dummy (L : My_Lists.List);
8end Iter1;
9