view gcc/testsuite/gnat.dg/inline18_gen1.ads @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 1830386684a0
children
line wrap: on
line source

generic

  type Bound_T is private;

package Inline18_Gen1 is

  type T is private;
  function Complete return T with Inline_Always;

private

  type T is array (0 .. 1) of Bound_T;

end Inline18_Gen1;