I came across some code today that looked somewhat like this:
subroutine foo()
real blah
integer bar,k,i,j,ll
integer :: n_called=1
save integer
...
end
It seems like the intent here was probably save n_called
, but is that even a valid statment to save all integers -- or is it implicitly declaring a variable named integer
and saving it?