Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gnat.dg / generic_inst13_pkg-nested_g.ads
blobedbfe942afefcbc4ddf1a28919abc54442d170ae
1 with Generic_Inst13_Pkg.Ops_G;
3 generic
4 package Generic_Inst13_Pkg.Nested_G is
6 type T is new Generic_Inst13_Pkg.T;
8 package My_Operations is new Generic_Inst13_Pkg.Ops_G (T);
10 subtype List_T is My_Operations.List_T;
12 function "or" (Left, Right : T) return List_T renames My_Operations."or";
14 end Generic_Inst13_Pkg.Nested_G;