blob: 0a9d064201a0f12bbf2d4132858dcc85cf0162b8 [file] [log] [blame]
program common1
implicit none
common /block/ a, b, c
integer :: a
real :: b
double precision :: c
a = 5
b = 4.6
c = 2.345
print *, a, b, c
call helper
print *, a, b, c
end program common1
subroutine helper
implicit none
common /block/ e, f !<<<<< 20, 11, 20, 16, fail-final
integer :: e
double precision :: f ! type differs
e = 50
f = 40.6
end subroutine helper