PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / associate_26.f90
blobae19acaf777401b7e493833cbaf9022a3fda4a21
1 ! { dg-do compile }
2 ! { dg-options "-fcoarray=single" }
4 ! Test the fix for PR78152
6 ! Contributed by <physiker@toast2.net>
8 program co_assoc
9 implicit none
10 integer, parameter :: p = 5
11 real, allocatable :: a(:,:)[:,:]
12 allocate (a(p,p)[2,*])
13 associate (i => a(1:p, 1:p))
14 end associate
15 end program co_assoc