1! PR libfortran/20755
2! { dg-do run }
3! { dg-options "-std=legacy" }
4!
5      character*30 s
6
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
13