AArch64: correct constraint on Upl early clobber alternatives
[official-gcc.git] / gcc / testsuite / gfortran.dg / integer_plus.f90
blob242835be8d09bc1fa251e86bedb6a8e71946a987
1 ! { dg-do 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