view gcc/testsuite/gnat.dg/loop_optimization8_pkg2.ads @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

package Loop_Optimization8_Pkg2 is

  type Array_T is array (Natural range <>) of Integer;

  type Obj_T (Length : Natural) is
    record
      Elements : Array_T (1 .. Length);
    end record;

  type T is access Obj_T;

  function Length (Set : T) return Natural;
  function Index (Set : T; Position : Natural) return Integer;
  pragma Inline (Length, Index);

end Loop_Optimization8_Pkg2;