xref: /llvm-project/flang/test/Semantics/Inputs/modfile09-a.f90 (revision b98ad941a40c96c841bceb171725c925500fce6c)
1module m
2  integer :: m1_x
3  interface
4    module subroutine s()
5    end subroutine
6  end interface
7end
8
9!Expect: m.mod
10!module m
11!integer(4)::m1_x
12!interface
13!module subroutine s()
14!end
15!end interface
16!end
17