2018-03-15 Steven G. Kargl <kargl@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gnat.dg / nat1r.adb
blob91a17ba3a637d19e0025a3e1d676b8ea206079ce
1 -- { dg-do run }
3 with System, NAT1; use NAT1;
4 procedure Nat1R is
5 use type System.Address;
6 begin
7 if One_Address /= Nat_One_Storage'Address then
8 raise Constraint_Error;
9 end if;
10 end;