blob: 41185ac5f4247ac2c94ecd4f8757a36d825e2e5e [file] [log] [blame]
! RUN: %S/test_modfile.sh %s %t %flang_fc1
module m
implicit complex(8)(z)
real :: x
namelist /nl1/ x, y
namelist /nl2/ y, x
namelist /nl1/ i, z
complex(8) :: z
real :: y
end
!Expect: m.mod
!module m
! real(4)::x
! integer(4)::i
! complex(8)::z
! real(4)::y
! namelist/nl1/x,y,i,z
! namelist/nl2/y,x
!end