Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
gfortran.fortran-torture
/
execute
/
unopened_unit_1.f90
blob: 0ca4f08d7e147141b29a3fc59a097ee28ff695f6 [
file
] [
log
] [
blame
]
!
PR
14565
program unopened_unit_1
Integer
I
,
J
Do
I
=
1
,
10
Write
(
99
,*)
I
End
Do
Rewind
(
99
)
Do
I
=
1
,
10
Read
(
99
,*)
J
If
(
J
.
ne
.
I
)
STOP
1
End
Do
Close
(
99
,
Status
=
'Delete'
)
End
program