c++: constrained lambda error-recovery [PR108972]
[official-gcc.git] / gcc / testsuite / gnat.dg / prot9_pkg2.ads
blobaf0e03b311457f1d003032f7051885ac58f83bfa
1 with Ada.Containers.Doubly_Linked_Lists;
3 package Prot9_Pkg2 is
5 type Prot_type is limited private;
7 private
9 package My_Lists is new Ada.Containers.Doubly_Linked_Lists (Integer);
11 protected type Prot_type is
12 private
13 L : My_Lists.List;
14 end Prot_type;
16 end Prot9_Pkg2;