repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libgfortran/ChangeLog:
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
is_iostat_end_eor_1.f90
blob
dfa3a5c03c972ea07bb074ccdc36540924bde977
1
! { dg-do run }
2
! Test for the Fortran 2003 intrinsics is_iostat_end & is_iostat_eor
3
!
4
program
test
5
use
iso_fortran_env
6
implicit none
7
if
((.
not
.
is_iostat_end
(
IOSTAT_END
)) .
or
.
is_iostat_end
(
0
))
call
abort
()
8
if
((.
not
.
is_iostat_eor
(
IOSTAT_EOR
)) .
or
.
is_iostat_end
(
0
))
call
abort
()
9
end program
test