view gcc/testsuite/gfortran.dg/cray_pointers_4.f90 @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { 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