blob: 86dfe2731b5d1d9311cdff7f1a3fee54ec54af73 [file] [log] [blame]
module common3
implicit none
contains
subroutine help_common3
common /block/ a_common, b_common, c_common
integer :: a_common
real :: b_common
double precision :: c_common
common /mem/ a, b, c
integer :: a, b, c
end subroutine help_common3
end module common3