(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
pr103606.f90
! { dg-do compile }
! PR fortran/103606 -  ICE in resolve_fl_procedure
! Contributed by G.Steinmetz

program p
  type t
  end type
contains
  elemental function f() result(z) ! { dg-error "CLASS variable" }
    class(t) :: z
  end
end