Fix internal error on function call returning extension of limited interface
[official-gcc.git] / gcc / testsuite / gnat.dg / inline18_gen1.ads
blob54e569302bc59201838018b53beb37f4af061096
1 generic
3 type Bound_T is private;
5 package Inline18_Gen1 is
7 type T is private;
8 function Complete return T with Inline_Always;
10 private
12 type T is array (0 .. 1) of Bound_T;
14 end Inline18_Gen1;