Re: [Patch, Fortran] PR57721 - improve out-of-bounds error message for components

2013-06-26 Thread Thomas Koenig
Hi Tobias, The patch changes the out-of-bounds message for "k==11" z(i)%y(j)%x(k)=0 from: Fortran runtime error: Index '11' of dimension 1 of array 'z' above upper bound of 10 to Fortran runtime error: Index '11' of dimension 1 of array 'z%y%x' above upper bound of 10 (For j out of bou

[Patch, Fortran] PR57721 - improve out-of-bounds error message for components

2013-06-26 Thread Tobias Burnus
The patch changes the out-of-bounds message for "k==11" z(i)%y(j)%x(k)=0 from: Fortran runtime error: Index '11' of dimension 1 of array 'z' above upper bound of 10 to Fortran runtime error: Index '11' of dimension 1 of array 'z%y%x' above upper bound of 10 (For j out of bounds, it woul