1 ! RUN: %python %S/test_modfile.py %s %flang_fc1
2 ! Ensures that uninitialized allocatable components in a structure constructor
3 ! appear with explicit NULL() in the expression representation.
6 real, allocatable
:: x1
, x2
, x3
9 type(t
) :: a
= t(NULL(),x2
=NULL())
16 !real(4),allocatable::x1
17 !real(4),allocatable::x2
18 !real(4),allocatable::x3
21 !type(t)::a=t(x1=NULL(),x2=NULL(),x3=NULL())