blob: 7ea466331c511e35c0ac734e8fd3ec17baa997a5 [file] [log] [blame]
program common1
!use common2
!use common3
!use common4
implicit none
common /block/ a, b, c, /mem/ r, f, t
integer :: a
real :: b
double precision :: c
integer :: r, f, t
a = 5
b = 4.6
c = 2.345
call helper
end program common1
subroutine helper
implicit none
common /block/ e, f, g
integer :: e
real :: f
double precision :: g
end subroutine helper