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