mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
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
|