(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
char_allocation_1.f90
! 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