c++: prvalue of array type [PR111286]
[official-gcc.git] / gcc / testsuite / gnat.dg / generic_inst9_pkg1.ads
blob50b62f166de5395685c80737dc96b9f75eebd054
2 package Generic_Inst9_Pkg1 is
4 type T is (None, Smaller, Equal, Larger);
6 type R is record
7 Val : Integer;
8 end record;
10 function Compare (Left, Right : R) return T;
12 end;