Sign in
gnu
/
gcc
/
93ac832f1846e4867aa6537f76f510fab8e3e87d
/
.
/
gcc
/
testsuite
/
gfortran.fortran-torture
/
compile
/
module_common.f90
blob: f727881d75b131b50a65867091c97d7ae3624a32 [
file
] [
log
] [
blame
]
!
We
were incorrectly trying to create a variable
for
the common block itself
,
!
in
addition to the variables it contains
.
module
FOO
implicit
none
integer I
common
/
C
/
I
contains
subroutine BAR
end
subroutine BAR
end
module
FOO