blob: 36130281e63014b29bc13d7042005d13c5d9293a [file] [log] [blame]
program program1 !basic test, add list of given names
use module2
use module3 !<<<<< 3, 5, 3, 12, help_common3, onlyTest, pass
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