(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
pr88357_1.f90
! { dg-do compile }
! { dg-options "-fcoarray=single" }
program p
   type t
   end type
   class(t) :: x[*]     ! { dg-error "must be dummy, allocatable or pointer" }
   associate (y => x)
   end associate
end