URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [slash_1.f90] - Rev 302
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