[WebAssembly] Fix asan issue from https://reviews.llvm.org/D121349
[llvm-project.git] / flang / test / Semantics / modfile19.f90
blobb7a49d262d31d70bfceb3555a98f0fd68631d458
1 ! RUN: %python %S/test_modfile.py %s %flang_fc1
2 module 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
10 end
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