RosettaCodeData/Task/Pointers-and-references/Ada/pointers-and-references-6.ada

6 lines
144 B
Ada
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
-- Demonstrate the overlay of one object on another
A : Integer;
B : Integer;
for B'Address use A'Address;
-- A and B start at the same address