[to-be-committed] [RISC-V] Use Zbkb for general 64 bit constants when profitable
[official-gcc.git] / gcc / testsuite / gfortran.dg / array_constructor_39.f90
blob90c2d545c185a2f92c5a10cb555f987e9dd1a705
1 ! { dg-do run }
3 ! PR fortran/44354
4 ! array constructors were giving unexpected results when the ac-implied-do
5 ! variable was used in one of the ac-implied-do bounds.
7 ! Original testcase by Vittorio Zecca <zeccav@gmail.com>
9 I=5
10 if (any((/(i,i=1,I)/) /= (/1,2,3,4,5/))) STOP 1! { dg-warning "final expression references control variable" }
11 if (I /= 5) STOP 2
12 end