aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/inline18_gen1.ads
blob: 54e569302bc59201838018b53beb37f4af061096 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;