Developing in Julia, I find I am missing the nice diagnostics that gfortran provides with -fcheck=bounds, that is, the name of the array and which index is out of bounds (for multidimensional arrays). All I am getting from Julia is the line number of the beginning of the for-loop that contains the bounds error. Typically, this loop references numerous arrays so figuring out where the problem occurs is time consuming.
