blob: 404d323ec93ddd22395b57085902c54cc5479f75 [file] [log] [blame]
! Program to test passing intrinsic functions as actual arguments for
! dummy procedures.
subroutine test (proc)
implicit none
real proc
real a, b, c
a = 1.0
b = sin (a)
c = proc (a)
if (abs (b - c) .gt. 0.001) STOP 1
end subroutine
program dummy
implicit none
external test
intrinsic sin
call test (sin)
end program