aarch64: Add vector floating point extend pattern [PR113880, PR113869]
[official-gcc.git] / gcc / testsuite / gfortran.dg / associated_target_1.f90
blob13df47023c8af71ecc8f2fde836a1100325b2bed
1 ! { dg-do compile }
2 ! This tests the patch for PR27584, where an ICE would ensue if
3 ! a bad argument was fed for the target in ASSOCIATED.
5 ! Contributed by Tobias Burnus <tobias.burnus@physik.fu-berlin.de>
7 program test
8 implicit none
9 real, pointer :: x
10 real, target :: y
11 if(ASSOCIATED(X,(Y))) print *, 'Hello' ! { dg-error "VARIABLE or FUNCTION" }
12 end program test