PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr41922.f90
blob12d353353bc3af4d9be360da703a5a2d85bca3e7
1 ! { dg-do compile }
2 ! { dg-options -std=gnu }
3 Subroutine RestoreR8Run()
4 Implicit NONE
5 Integer ISTORE
6 Real XSTORE
7 character CSTORE(8)
8 data cstore/8*' '/
9 data istore/0/
10 EQUIVALENCE (CSTORE(1),XSTORE,ISTORE) ! { dg-error "Overlapping unequal" }
11 end