brintos

brintos / llvm-project-archived public Read only

0
0
Text · 331 B · b7a49d2 Raw
21 lines · plain
1! RUN: %python %S/test_modfile.py %s %flang_fc12module m3  implicit complex(8)(z)4  real :: x5  namelist /nl1/ x, y6  namelist /nl2/ y, x7  namelist /nl1/ i, z8  complex(8) :: z9  real :: y10end11 12!Expect: m.mod13!module m14!  real(4)::x15!  integer(4)::i16!  complex(8)::z17!  real(4)::y18!  namelist/nl1/x,y,i,z19!  namelist/nl2/y,x20!end21