Files
CMake/Tests/FortranModules/Issue25112/objmod.f90
Ben Boeckel 45513c1a69 Tests/FortranModules: move issue 25112 fix from FortranOnly
It involves modules, so it belongs in the `FortranModules` test set.
2023-09-18 19:41:47 -04:00

8 lines
142 B
Fortran

module objmod
implicit none
contains
subroutine hello()
print '(a)', "hello world"
end subroutine hello
end module objmod