mirror of
https://github.com/reactos/CMake.git
synced 2024-11-26 04:50:24 +00: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
|