comparison gcc/testsuite/gfortran.dg/pr20124.f90 @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 ! { dg-do run }
2 ! { dg-options "-std=legacy" }
3 !
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') call abort
10 end