rt_gccstream/gcc/testsuite/gfortran.dg/equiv_constraint_3.f90

14 lines
340 B
Fortran

! { dg-do compile }
! PR20900 - USE associated variables cannot be equivalenced.
! Contributed by Joost VandeVondele <jv244@cam.ac.uk>
MODULE TEST
INTEGER :: I
END MODULE
! note 11.7
USE TEST, ONLY : K=>I
INTEGER :: L
EQUIVALENCE(K,L) ! { dg-error "conflicts with USE ASSOCIATED attribute" }
END
! { dg-final { cleanup-modules "TEST" } }