Mercurial > hg > CbC > CbC_gcc
view gcc/testsuite/gfortran.dg/array_initializer_3.f90 @ 131:84e7813d76e9
gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 07:37:49 +0900 |
parents | 04ced10e8804 |
children |
line wrap: on
line source
! { dg-do compile } ! Tests the fix for PR28923 in which initializer array constructors with ! a missing initial array index and negative stride would be incorrectly ! interpreted. ! ! Contributed by Dominique d'Humieres <dominiq@lps.ens.fr> ! real, dimension(3,3), parameter :: a=reshape ((/(i, i = 1,9)/),(/3,3/)) real, dimension(2,3) :: b=a(:2:-1,:) ! { dg-error "Different shape for array assignment" } real, dimension(2,3) :: c=a(3:2:-1,:) print *, b print *, c end