1! RUN: %S/test_modfile.sh %s %t %f18 2module m 3 implicit complex(8)(z) 4 real :: x 5 namelist /nl1/ x, y 6 namelist /nl2/ y, x 7 namelist /nl1/ i, z 8 complex(8) :: z 9 real :: y 10end 11 12!Expect: m.mod 13!module m 14! real(4)::x 15! integer(4)::i 16! complex(8)::z 17! real(4)::y 18! namelist/nl1/x,y,i,z 19! namelist/nl2/y,x 20!end 21