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
2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
pr47878.f90
blob
c9227f400070e5da0f0d496ccd33c3a3cd129b4f
1
! PR fortran/47878
2
! { dg-do run { target fd_truncate } }
3
integer
::
a
(
5
)
4
open
(
99
,
recl
=
40
)
5
write
(
99
,
'(5i3)'
)
1
,
2
,
3
6
rewind
(
99
)
7
read
(
99
,
'(5i3)'
)
a
8
if
(
any
(
a
.
ne
.(/
1
,
2
,
3
,
0
,
0
/)))
call
abort
9
close
(
99
,
status
=
'delete'
)
10
end