Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
gfortran.dg
/
intent_out_10.f90
blob: 82e928c98fa991b9ae90413ac6e1d03a07ab9237 [
file
] [
log
] [
blame
]
!
{
dg
-
do
compile
}
!
PR
87395
-
this
used to ICE
module
mo
integer
,
save
::
x
contains
subroutine foo
x
=
42
call bar
(
x
)
contains
subroutine bar
(
y
)
integer
,
intent
(
out
)
::
y
end
subroutine bar
end
subroutine foo
end
module
mo