(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
charlen_09.f90
! { dg-do compile }
! PR fortran/65173
program p
   type t
   end type
   type, extends(t) :: t2
      character x(:)       ! { dg-error "must have an explicit shape" }
   end type
end