Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gfortran.fortran-torture / compile / module_common.f90
blobf727881d75b131b50a65867091c97d7ae3624a32
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