Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gfortran.fortran-torture
/
compile
/
contained_2.f90
blob: 76ef6c6287145d53abef263fd618cd98ea9a4fdc [
file
] [
log
] [
blame
]
!
Arrays
declared
in
parent but used
in
the child
.
program error
implicit
none
integer
,
dimension
(
10
)
::
a
contains
subroutine test
()
implicit
none
a
(
1
)
=
0
end
subroutine
end
program