• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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