c++: constrained lambda error-recovery [PR108972]
[official-gcc.git] / gcc / testsuite / gnat.dg / asan1_pkg.ads
blobfbbc1c5e7f5bdcb3f7993a50c048138f3b691bfc
1 package Asan1_Pkg is
2 subtype E is Integer;
3 type T is array (1..32) of E;
5 function N return T;
6 function C (P : T) return E;
8 V : constant E := C (N);
9 end Asan1_Pkg;