aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/cray_pointers_4.f90
blob: 85e7ae758c96fd8b26014604fc2c4b3f484519e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
! { dg-do compile }
! { dg-options "-fcray-pointer" }

subroutine err1
  integer :: in_common1, in_common2, v, w, equiv1, equiv2
  common /in_common1/ in_common1
  pointer (ipt1, in_common1)		! { dg-error "conflicts with COMMON" }
  pointer (ipt2, in_common2)
  common /in_common2/ in_common2	! { dg-error "conflicts with COMMON" }
  equivalence (v, equiv1)
  pointer (ipt3, equiv1)		! { dg-error "conflicts with EQUIVALENCE" }
  pointer (ipt4, equiv2)
  equivalence (w, equiv2)		! { dg-error "conflicts with EQUIVALENCE" }
end subroutine err1