(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
charlen_16.f90
! { dg-do run }
! PR fortran/78350 
program p
   type t
      character(2) :: c(1) = [character(3) :: 'abc']
   end type
   type(t) :: x
   if (trim(x%c(1)) /= 'ab') STOP 1
end