summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/list_read_8.f90
blob: 5fe6482c79e6cdffedfd663499300f48b5621883 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
! { dg-do run }
! PR34676 IO error delayed
! Test case from PR modified by <jvdelisle@gcc.gnu.org>
implicit none
integer::i,badness
character::c
open(unit=10,status="scratch")
write(10,'(a)') '1'
write(10,'(a)') '2'
write(10,'(a)') '3'
rewind(10)
do i=1,10
  read(10,*,iostat=badness)
  if (badness/=0) exit
enddo
if (i /= 4) STOP 1
end