URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [slash_1.f90] - Rev 848
Go to most recent revision | Compare with Previous | Blame | View Log
! PR libfortran/22170
! { dg-do run }
integer i
open (10,status='scratch')
write (10,'(A,2/,A)') '12', '17'
rewind (10)
read (10,'(I2)') i
if (i /= 12) call abort
read (10,'(I2)') i
if (i /= 0) call abort
read (10,'(I2)') i
if (i /= 17) call abort
end
Go to most recent revision | Compare with Previous | Blame | View Log