Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gfortran.dg / equiv_constraint_8.f90
blob9a742eec5c42fecd774234c09d2b4f534f6a1e25
1 ! { dg-do compile }
2 ! { dg-options "-O0" }
3 ! PR20899 - Common block variables cannot be equivalenced in a pure procedure.
4 ! Contributed by Joost VandeVondele <jv244@cam.ac.uk>
5 common /z/ i
6 contains
7 pure integer function test(j)
8 integer, intent(in) :: j
9 common /z/ i
10 integer :: k
11 equivalence(i,k) ! { dg-error "EQUIVALENCE object in the pure" }
12 k=1 ! { dg-error "in PURE procedure at" }
13 test=i*j
14 end function test
15 end