2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gfortran.dg / backspace_11.f90
blobe369b75f67c77ba35fef324147583af727eaa9f8
1 ! { dg-do run }
2 ! PR 40334 backspace regression
3 program backspace_11
4 implicit none
5 character(len=5) :: str
6 open(10, access='sequential', status='scratch')
7 write(10,'(A)')'HELLO'
8 rewind(10)
11 read(10,'(A)',end=1) str
12 enddo
13 1 backspace 10
14 !the file pointer is now at EOF
16 read(10,*,end=2) str
17 call abort
18 2 backspace 10
19 !the file pointer is now at EOF
21 read(10,'(A)',end=3) str
22 call abort
23 3 continue
24 end program backspace_11