blob: e0aefcf7845ae717a52725b8e7b03a18a8ce80c5 [file] [log] [blame]
! PR fortran/31974
! { dg-do run }
subroutine foo (n)
integer :: n
character (len = n) :: v(n)
v = ''
if (any (v /= '')) STOP 1
end subroutine foo
call foo(7)
end