URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [read_eof_5.f90] - Rev 313
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }
! PR34560 I/O internal read: END expected, but no failure
program main
character(len=2) :: line
character(len=1) :: a(3)
a = "x"
line = 'ab'
read (line,'(A)',END=99) a
call abort
99 continue
if (any(a /= ['a','x','x'])) call abort
end program main
Go to most recent revision | Compare with Previous | Blame | View Log