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.
4!
5! Contributed by Tobias Burnus  <tobias.burnus@physik.fu-berlin.de>
6!
7program test
8   implicit none
9   real, pointer :: x
10   real, target :: y
11   if(ASSOCIATED(X,(Y))) print *, 'Hello' ! { dg-error "VARIABLE or FUNCTION" }
12end program test
13