mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 21:59:54 -06:00
10 lines
188 B
Fortran
10 lines
188 B
Fortran
module test_mod
|
|
interface dummy
|
|
module procedure sub
|
|
end interface
|
|
contains
|
|
subroutine sub
|
|
end subroutine
|
|
|
|
end module test_mod
|