aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/specs/renaming2_pkg4.adb
blob: 50dd536477287e52b7efaf7eb974ed6977d46234 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package body Renaming2_Pkg4 is

  package body Inner is

      function Next_Value return Value_T is
        Next_Value : Value_T renames Value (Next);
      begin
        return Next_Value;
      end Next_Value;

  end Inner;
end Renaming2_Pkg4;