aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/renaming6.ads
blob: 5cfef5b999f027cc8a8192b4510fdb92ecd28dac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package Renaming6 is

  I : Integer;
  pragma Atomic (I);

  function Get_I return Integer;
  procedure Set_I (Val : Integer);

  J : Integer renames I;

  function Get_J return Integer;
  procedure Set_J (Val : Integer);

end Renaming6;