PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gnat.dg / opt42.ads
blob3d6a3c14a86b4cb826b625e8eedda692ab3cec7e
1 package Opt42 is
3 type Index_Type is range 1 .. 7;
4 type Row_Type is array (Index_Type) of Float;
5 type Array_Type is array (Index_Type) of Row_Type;
7 function "*" (Left, Right : in Array_Type) return Array_Type;
9 end Opt42;