Topic: showing module variable values in debug window
Is there a way to display the values of variables declared in a module in another program units that USES the module?
For example, running the following program under the debugger
module tryit
integer::i=5,j
end module tryit
program testmod
use tryit
j=i+5
write(*,*)i,j
end program testmod
The two variables i and j are not shown at all in the debug variables pane. You can click-select them in the sourcecode pane and their value will be displayed, but it would be much more useful to have the variables tracked in the variable pane.
Am I missing something?
Thanks