2018-03-15 Steven G. Kargl <kargl@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gnat.dg / deferred_const3_pkg.adb
blobe865494454bae3ba22a7c455b3104a648df25150
1 with System; use System;
3 package body Deferred_Const3_Pkg is
5 procedure Dummy is begin null; end;
7 begin
8 if C1'Address /= C'Address then
9 raise Program_Error;
10 end if;
12 if C2'Address /= C'Address then
13 raise Program_Error;
14 end if;
16 if C3'Address /= C'Address then
17 raise Program_Error;
18 end if;
19 end Deferred_Const3_Pkg;