blob: f9a277cb7e8cebf1d3f51d2441715649623975db [file] [log] [blame]
! { dg-do run }
! PR 15129: we used to share the character length between A and B in the
! subroutine.
CHARACTER*10 A
CHARACTER*8 B
A = 'gfortran'
B = 'rocks!'
CALL T(A,B)
contains
SUBROUTINE T(A,B)
CHARACTER*(*) A,B
if(len(a)/=10) call abort()
if(len(b)/=8) call abort()
END SUBROUTINE
end