blob: 9fd5791cfdccb888a6f7511112718ad6d948cc24 [file] [log] [blame]
program program1 !basic test, add list of given names
use module2
use module3, only: help_common3, onlytest
use module4, only: help_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 program1
subroutine helper
implicit none
common /block/ e, f, g
integer :: e
real :: f
double precision :: g
end subroutine helper