aarch64: Add missing ACLE macro for NEON-SVE Bridge
[official-gcc.git] / gcc / testsuite / gfortran.dg / associate_50.f90
blob990ec58bffe13833ae53148d74d93f4dd600151e
1 ! { dg-do compile }
2 ! PR 92780 - this used to ICE instead of being rejected.
3 ! Test case by Gerhard Steinmetz.
5 program p
6 associate (y => p) ! { dg-error "Invalid association target" }
7 end associate ! { dg-error "Expecting END PROGRAM statement" }
8 end program p