mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-21 05:38:24 -05:00
eb8cd35684
The main Fortran test is not granular enough. Split some into another test.
8 lines
150 B
Fortran
8 lines
150 B
Fortran
MODULE externalMod
|
|
!
|
|
CONTAINS
|
|
SUBROUTINE printExtModGreeting
|
|
WRITE(*,*) "Greetings from Module externalMod"
|
|
END SUBROUTINE
|
|
END MODULE
|