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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
backslash_2.f90
blob
2f954d539495f483038be1be942aeefc4f73199f
1
! { dg-do run }
2
! { dg-options "-fbackslash" }
3
integer
::
i
,
e
4
open
(
10
,
status
=
'scratch'
)
5
write
(
10
,
'(A)'
)
'1
\n
2'
6
rewind
(
10
)
7
read
(
10
,*,
iostat
=
e
)
i
8
if
(
e
/=
0
.
or
.
i
/=
1
)
call
abort
9
read
(
10
,*,
iostat
=
e
)
i
10
if
(
e
/=
0
.
or
.
i
/=
2
)
call
abort
11
end