This is the mail archive of the fortran@gcc.gnu.org mailing list for the GNU Fortran project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
This change was suggested by Steve; I also prefer it to the current version.
Old/current error message (example): --------------- Fortran runtime error: Array reference out of bounds for array 'a', upper bound of dimension 1 exceeded (in file 'string2.f90' at line 6) ---------------
New/proposed error message (example): --------------- Fortran runtime error: Array reference out of bounds for array 'a', upper bound of dimension 1 exceeded in file 'string2.f90' at line 6 ---------------
$ cat a.f90 integer :: i = - 1 open(i,status="scratch") end $ gfortran a.f90 && ./a.out At line 2 of file a.f90 Fortran runtime error: Bad unit number in OPEN statement
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |