aarch64: Add missing ACLE macro for NEON-SVE Bridge
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr95980.f90
blob7c8260a96e059e90e0aa5db68eb0bddccf3eb2a6
1 ! { dg-do compile }
2 ! PR fortran/95980 - ICE in get_unique_type_string, at fortran/class.c:485
4 program p
5 type t
6 end type t
7 class(t) :: x ! { dg-error "must be dummy, allocatable or pointer" }
8 select type (y => x)
9 end select
10 end