aarch64: Add vector floating point extend pattern [PR113880, PR113869]
[official-gcc.git] / gcc / testsuite / gfortran.dg / data_implied_do_2.f90
blob97674410d966ca4e9ec09e81a9909d8f8041ff2d
1 ! { dg-do compile }
2 ! PR fortran/84134 - this used to ICE.
3 ! Test case by Gerhard Steinmetz
5 program p
6 integer :: i, x(3)
7 data (x(i+1:i+2:i),i=0,1) /1,2,3/ ! { dg-error "Nonconstant array section" }
8 end