Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gfortran.fortran-torture / compile / io_end.f90
blobf67ae57ae8ea4dffe87b400f2d3efda47649e1a3
1 ! Check we can cope with end labels in IO statements
2 program m
3 implicit none
4 integer i
5 do while (.true.)
6 read(*, *, end = 1) i
7 end do
8 1 continue
9 end program m