Files
CMake/Tests/FortranModules/Issue25112/objmain.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

6 lines
89 B
Fortran

program main
use objmod, only : hello
implicit none
call hello()
end program