Fix compilation failure with C++98 compilers
[official-gcc.git] / gcc / testsuite / gfortran.dg / integer_plus.f90
blob64c4b1c985352b5405d5813f066bffafd5466e52
1 ! { dg-run run )
2 ! PR83560 list-directed formatting of INTEGER is missing plus on output
3 ! when output open with SIGN='PLUS'
4 character(64) :: astring
5 i=789
6 open(unit=10, status='scratch', sign='plus')
7 write(10,*) i
8 rewind(10)
9 read(10,*) astring
10 close (10)
11 if (astring.ne.'+789') STOP 1
12 end