PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr20124.f90
blob0e3f34d6664a5c19120e0f7ddc759ab0577072ee
1 ! { dg-do run }
2 ! { dg-options "-std=legacy" }
4 ! pr 20124
5 character*80 line
6 x = -.01
7 y = .01
8 write(line,'(2f10.2)') x, y
9 if (line.ne.' -0.01 0.01') STOP 1
10 end