Commit d0e75c71 by Paul Brook Committed by Paul Brook

* gfortran.dg/empty_format_1.f90: Remove stray commas.

From-SVN: r88696
parent 9e941b4a
2004-10-07 Paul Brook <paul@codesourcery.com>
* gfortran.dg/empty_format_1.f90: Remove stray commas.
2004-10-07 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
* gfortran.fortran-torture/execute/intrinsic_mvbits.f90,
......
......@@ -7,9 +7,9 @@ program main
character*20 str
io_unit = 10
open (unit=io_unit,status='scratch',form='formatted')
write (io_unit, '(A)'), "Line1"
write (io_unit, '(A)'), "Line2"
write (io_unit, '(A)'), "Line3"
write (io_unit, '(A)') "Line1"
write (io_unit, '(A)') "Line2"
write (io_unit, '(A)') "Line3"
rewind (io_unit)
read (io_unit,'(A)') str
if (str .ne. "Line1") call abort
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment