mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-30 11:10:06 -05:00
2870a67540
Add a test case for Fortran `OBJECT` libraries providing modules to consumers.
8 lines
142 B
Fortran
8 lines
142 B
Fortran
module objmod
|
|
implicit none
|
|
contains
|
|
subroutine hello()
|
|
print '(a)', "hello world"
|
|
end subroutine hello
|
|
end module objmod
|