Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gnat.dg
/
addr2_p.adb
blob: 82e151cd7777f3027626afdb99d5fa11d8638e8f [
file
] [
log
] [
blame
]
with
System
;
package
body addr2_p
is
procedure
Process
(
Blk
:
Block
)
is
use
type
System
.
Address
;
begin
if
Blk
'Address /= B1'
Address
and
then
Blk
'Address /= B2'
Address
then
raise
Program_Error
;
end
if
;
end
;
end
;