mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 14:23:10 -05:00
10 lines
188 B
FortranFixed
10 lines
188 B
FortranFixed
module test_mod
|
|
interface dummy
|
|
module procedure sub
|
|
end interface
|
|
contains
|
|
subroutine sub
|
|
end subroutine
|
|
|
|
end module test_mod
|