mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-20 21:28:23 -05:00
eb8cd35684
The main Fortran test is not granular enough. Split some into another test.
12 lines
189 B
Fortran
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 |