Commit c5c28809 by Jerry DeLisle

fmt_zero_digits.f90: New test for no error when zero decimal digits specified in format.

2006-04-03  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	* gfortran.dg/fmt_zero_digits.f90: New test for no error when
	zero decimal digits specified in format.

From-SVN: r112657
parent 5eb90a1c
2006-04-03 Jerry DeLisle <jvdelisle@gcc.gnu.org>
* gfortran.dg/fmt_zero_digits.f90: New test for no error when
zero decimal digits specified in format.
2006-04-03 Paul Thomas <pault@gcc.gnu.org>
PR fortran/26981
! { dg-do run }
! Verify that when decimal precision is zero, no error.
! Submitted by Jerry DeLisle <jvdelisle@gcc.gnu.org>
program test
character(20) :: astr
50 FORMAT (d20.0)
astr = ""
write(astr,50) -8.0D0
if (astr.ne." 0.D+01") call abort()
end program test
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