Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gfortran.fortran-torture / compile / contained_2.f90
blob76ef6c6287145d53abef263fd618cd98ea9a4fdc
1 ! Arrays declared in parent but used in the child.
2 program error
3 implicit none
4 integer, dimension (10) :: a
5 contains
6 subroutine test()
7 implicit none
8 a(1) = 0
9 end subroutine
10 end program