mirror of
https://github.com/reactos/CMake.git
synced 2024-12-14 07:09:22 +00: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
|