AArch64: correct constraint on Upl early clobber alternatives
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr103606.f90
blob43283184e894dfd53c5eb4a85ac4a27716f544c0
1 ! { dg-do compile }
2 ! PR fortran/103606 - ICE in resolve_fl_procedure
3 ! Contributed by G.Steinmetz
5 program p
6 type t
7 end type
8 contains
9 elemental function f() result(z) ! { dg-error "CLASS variable" }
10 class(t) :: z
11 end
12 end