Hello list. The following subroutine fails to compile with f2py.
I use a complex variable with intent(inout). It works fine with two real variables, so I have a workaround, but it would be nicer with a complex variable.
Any thoughts on what I am doing wrong?
Thanks, Mark

module bessel
contains
    subroutine test( zxa )
        complex(kind=8), intent(inout) :: zxa
        zxa = cmplx(1.d0,2.d0,8)
        return
    end subroutine test
end module bessel