2 ! PR 40334 backspace regression
5 character(len
=5) :: str
6 open(10, access
='sequential', status
='scratch')
11 read(10,'(A)',end=1) str
14 !the file pointer is now at EOF
19 !the file pointer is now at EOF
21 read(10,'(A)',end=3) str
24 end program backspace_11