Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr20755.f
blob4a9b69cad5724041bae9ece450a5059a3364a6d0
1 ! PR libfortran/20755
2 ! { dg-do run }
3 ! { dg-options "-std=legacy" }
5 character*30 s
7 write (s,2000) 0.0, 0.02
8 if (s .ne. " 0.00 2.000E-02") call abort
9 write (s,2000) 0.01, 0.02
10 if (s .ne. " 1.000E-02 2.000E-02") call abort
11 2000 format (1PG12.3,G12.3)
12 end