aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr103606.f90
blob: 43283184e894dfd53c5eb4a85ac4a27716f544c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
! { 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