This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC 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]

[Bug fortran/52393] I/O: "READ format" statement with parenthesed default-char-expr


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52393

--- Comment #4 from Ian Harvey <ian_harvey at bigpond dot com> 2012-02-27 10:30:32 UTC ---
Maybe there's some additional cleverness going on then, because the following
equally contrived example:

PROGRAM ReadMeOne
  IMPLICIT NONE
  CHARACTER(10) :: var
  READ ('(A)'), var
  PRINT *, var
END PROGRAM ReadMeOne

which is again supposed to be the second form of read, when compiled with:

  gfortran -Wall -std=f2003

appears to work!


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]