]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gfortran.fortran-torture/compile/contained_5.f90
Merge tree-ssa-20020619-branch into mainline.
[thirdparty/gcc.git] / gcc / testsuite / gfortran.fortran-torture / compile / contained_5.f90
1 ! Function returning an array continaed in a module. Caused problems 'cos
2 ! we tried to add the dummy return vars to the parent scope.
3
4 Module contained_5
5 contains
6 FUNCTION test ()
7 REAL, DIMENSION (1) :: test
8 test(1)=0.0
9 END FUNCTION
10 end module