blob: 18e1cb0d006ffc211817573bb318923bfe7acd4f [file] [log] [blame]
C Test Fortran 77 I edit descriptor for input
C (ANSI X3.9-1978 Section 13.5.9.1)
C
C Origin: David Billinghurst <David.Billinghurst@riotinto.com>
C
C { dg-do run }
C { dg-options "-std=legacy" }
C
integer i,j
character*10 buf
write(buf,'(A)') '1 -1'
read(buf,'(I1)') i
if ( i.ne.1 ) STOP 1
read(buf,'(1X,I1)') i
if ( i.ne.0 ) STOP 2
read(buf,'(1X,I1,1X,I2)') i,j
if ( i.ne.0 .and. j.ne.-1 ) STOP 3
end