RISC-V: Support IMM for operand 1 of ussub pattern
[official-gcc.git] / gcc / testsuite / gnat.dg / specs / root.ads
blobe80ab88040168295e7136739d220fbf4222060f1
1 package Root is
3 type Buffer_Type is array (Positive range <>) of Natural;
5 type Root_Type (First : Natural) is abstract tagged record
6 Buffer_Root : Buffer_Type (1 .. First);
7 end record;
9 end Root;