blob: f971909701c85a9373d6ebfbfc2e2742fbb646fd [file] [log] [blame]
module lib
use m1, only : pi
implicit none
contains
pure real function func()
func = pi()
end function
end module