We still cannot see the value of host-associated variables. Is there any hope that someday this will be corrected?
Just to be clear, I'm talking about something as simple as the value of x in the subroutine abc, below (not a real program):
subroutine myprog(i)
integer x,i
x=i
contains
subroutine abc
print *,x
end subroutine abc
end subroutine myprog