Mercurial > hg > CbC > CbC_gcc
view gcc/testsuite/gfortran.dg/pr20755.f @ 132:d34655255c78
update gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 10:21:07 +0900 |
parents | 84e7813d76e9 |
children |
line wrap: on
line source
! PR libfortran/20755 ! { dg-do run } ! { dg-options "-std=legacy" } ! character*30 s write (s,2000) 0.0, 0.02 if (s .ne. " 0.00 2.000E-02") STOP 1 write (s,2000) 0.01, 0.02 if (s .ne. " 1.000E-02 2.000E-02") STOP 2 2000 format (1PG12.3,G12.3) end