aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/addr7.adb
blob: 982b50e3a1acec269f4fd37fff781b48a05a459c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
-- { dg-do compile }

package body Addr7 is

   procedure Proc (B: aliased Bytes) is
      O: Integer;
      for O'Address use B'Address;
   begin
      null;
   end;

end Addr7;