mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-20 21:28:23 -05:00
7c1e52be87
Test module usage across a `$<TARGET_OBJECTS>`-as-sources use case. See: #25425
14 lines
119 B
Fortran
14 lines
119 B
Fortran
module lib
|
|
|
|
use m1, only : pi
|
|
|
|
implicit none
|
|
|
|
contains
|
|
|
|
pure real function func()
|
|
func = pi()
|
|
end function
|
|
|
|
end module
|