aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/generic_inst12.adb
blob: 4f9974900c38792f142a32537fb7047d4f54133d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--  { dg-do run }
--  { dg-options "-O -gnatn" }
with Generic_Inst12_Pkg2;

procedure Generic_Inst12 is

  procedure My_Inner_G is new Generic_Inst12_Pkg2.Inner_G;

begin
  My_Inner_G (1);
  Generic_Inst12_Pkg2.Proc (1);
end;