re PR fortran/78741 (ICE in gfc_get_symbol_decl, at fortran/trans-decl.c:1534)
[official-gcc.git] / gcc / testsuite / gfortran.dg / associate_19.f03
blobe85873f775ed39c3747ff7a42458f6b7df1d0f10
1 ! { dg-do run }
3 ! Contributed by mrestelli@gmail.com
4 ! Adapated by Andre Vehreschild  <vehre@gcc.gnu.org>
5 ! Test that fix for PR69296 is working.
7 program p
8  implicit none
10  integer :: j, a(2,6), i(3,2)
12   a(1,:) = (/ (     j , j=1,6) /)
13   a(2,:) = (/ ( -10*j , j=1,6) /)
15   i(:,1) = (/ 1 , 3 , 5 /)
16   i(:,2) = (/ 4 , 5 , 6 /)
18   associate( ai => a(:,i(:,1)) )
19     if (any(shape(ai) /= [2, 3])) STOP 1
20     if (any(reshape(ai, [6]) /= [1 , -10, 3, -30, 5, -50])) STOP 2
21   end associate
23 end program p