]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gfortran.fortran-torture/compile/module_common.f90
Merge tree-ssa-20020619-branch into mainline.
[thirdparty/gcc.git] / gcc / testsuite / gfortran.fortran-torture / compile / module_common.f90
1 ! We were incorrectly trying to create a variable for the common block itself,
2 ! in addition to the variables it contains.
3 module FOO
4 implicit none
5 integer I
6 common /C/I
7 contains
8 subroutine BAR
9 end subroutine BAR
10 end module FOO