Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gnat.dg / generic_inst12.adb
blob4f9974900c38792f142a32537fb7047d4f54133d
1 -- { dg-do run }
2 -- { dg-options "-O -gnatn" }
3 with Generic_Inst12_Pkg2;
5 procedure Generic_Inst12 is
7 procedure My_Inner_G is new Generic_Inst12_Pkg2.Inner_G;
9 begin
10 My_Inner_G (1);
11 Generic_Inst12_Pkg2.Proc (1);
12 end;