]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gfortran.fortran-torture/compile/contained_1.f90
Merge tree-ssa-20020619-branch into mainline.
[thirdparty/gcc.git] / gcc / testsuite / gfortran.fortran-torture / compile / contained_1.f90
1 ! Obscure failure that disappeared when the parameter was removed.
2 ! Works OK now.
3 module mymod
4 implicit none
5 contains
6 subroutine test(i)
7 implicit none
8 integer i
9 end subroutine
10 end module mymod
11
12 program error
13 use mymod
14 end program
15