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
12 lines
104 B
Fortran
12 lines
104 B
Fortran
module m1
|
|
|
|
implicit none
|
|
|
|
contains
|
|
|
|
pure real function pi()
|
|
pi = 4*atan(1.)
|
|
end function
|
|
|
|
end module m1
|