1! { dg-do run }
2! PR32554 Bug in P formatting
3! Test case from the bug reporter
4program gfcbug66
5  real(8) :: x = 1.0e-100_8
6  character(50) :: outstr
7  write (outstr,'(1X,2E12.3)')    x, 2 * x
8  if (outstr.ne."    0.100E-99   0.200E-99") STOP 1
9  ! Before patch 2 * x was put out wrong
10  write (outstr,'(1X,1P,2E12.3)') x, 2 * x
11  if (outstr.ne."    1.000-100   2.000-100") STOP 2
12end program gfcbug66
13
14