RosettaCodeData/Task/Pointers-and-references/Ada/pointers-and-references-6.ada
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

5 lines
144 B
Ada

-- 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