1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-06-27 22:52:43 +08:00

12 lines
189 B
Fortran

module test_interface
interface dummy
module procedure module_function
end interface
contains
subroutine module_function
end subroutine
end module test_interface