OSDN Git Service

2010-03-17 Tobias Burnus <burnus@net-b.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / associated_target_1.f90
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 !
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