You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
320 B

! RUN: %S/test_modfile.sh %s %t %f18
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