module testmod
implicit none
contains
function a(x)
real :: a
real, intent(in) :: x
a=x**2.
end function
function b(x)
real :: b
real, intent(in) :: x
b=(x+6.)/a(x)
end function
end module
program testpro
use testmod
implicit none
print *, b(12.)
end
可以正常執行,輸出0.125也是正確的答案
你的B裡面宣告了另一個a,ifort和gfortran都不能編譯
試試把那個a刪掉?