blob: b81d448863bfe14f1d0bf4f6b3db373a9a89d097 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
with System; use System;
package body Deferred_Const2_Pkg is
procedure Dummy is begin null; end;
begin
if S'Address /= I'Address then
raise Program_Error;
end if;
end Deferred_Const2_Pkg;
|