Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gfortran.fortran-torture / execute / unopened_unit_1.f90
blobd87406ab4db6aa23bda1ceb3b3e949a4ca3aae08
1 ! PR 14565
2 program unopened_unit_1
3 Integer I,J
4 Do I = 1,10
5 Write(99,*)I
6 End Do
7 Rewind(99)
8 Do I = 1,10
9 Read(99,*)J
10 If (J.ne.I) Call abort
11 End Do
12 End program