-- { dg-do compile }pragma Restrictions(No_Elaboration_Code);package Elab3 istype T_List is array(Positiverange<>)ofInteger;type T_List_Access is access constant T_List;type R is record
A : T_List_Access;end record;
C :constant R := (A =>null);end Elab3;