------- Comment #1 from burnus at gcc dot gnu dot org 2008-04-08 12:00 ------- (In reply to comment #0) > Not sure if it is a bug, at least is a situation in which > we would expect a error message: > write(*,*), 'test' > The "," after the closing quote is not noticed by the compiler.
If you care to write standard conforming code, you should instruct the compiler that you want to do so. Using -std=f95 or -std=f2003, gfortran prints the following error message: write(*,*), 'test' 1 Error: Extension: Comma before i/o item list at (1) -- burnus at gcc dot gnu dot org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |WONTFIX http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35871