aarch64: Add vector floating point extend pattern [PR113880, PR113869]
[official-gcc.git] / gcc / testsuite / gfortran.dg / pdt_33.f90
blob0521513f2f8e087183a5a83601dab1c2d76eb569
1 ! { dg-do compile }
3 ! PR fortran/106050
4 ! The following used to trigger an error recovery ICE by releasing
5 ! the symbol T before the symbol K which was leading to releasing
6 ! K twice as it's in T's namespace.
8 ! Contributed by G. Steinmetz <gscfq@t-online.de>
10 program p
11 a = 1
12 type t(k) ! { dg-error "Unexpected derived type declaration" }
13 integer, kind :: k = 4 ! { dg-error "not allowed outside a TYPE definition" }
14 end type ! { dg-error "Expecting END PROGRAM" }
15 end