blob: 58c1c314bcd88af2b695de3c01daf1ec61f91a24 [file] [log] [blame]
package Address_Null_Init is
type Acc is access Integer;
A : Acc := new Integer'(123);
B : Acc; -- Variable must be set to null (and A overwritten by null)
for B'Address use A'Address;
end Address_Null_Init;