URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [fmt_f0_1.f90] - Rev 302
Compare with Previous | Blame | View Log
! { dg-do run )! PR39304 write of 0.0 with F0.3 gives **! Test case developed from case provided by reporter.REAL :: xCHARACTER(80) :: strx = 0.0write (str,'(f0.0)') xif (str.ne."0.") call abortwrite (str,'(f0.1)') xif (str.ne."0.0") call abortwrite (str,'(f0.2)') xif (str.ne."0.00") call abortwrite (str,'(f0.3)') xif (str.ne."0.000") call abortwrite (str,'(f0.4)') xif (str.ne."0.0000") call abortEND
