mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-21 13:48:33 -05:00
9d2769ecbd
Test module usage across a `$<TARGET_OBJECTS>`-as-linked-items 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
|