2017-11-05 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gfortran.dg / parameter_array_element_1.f90
blob9be3041a1d28d9b6de8a5eb3edb02deb92fef2a7
1 ! { dg-do compile }
2 ! { dg-options "-fdump-tree-original" }
3 ! Tests the fix for PR 30872, in which the array element references bo(1,1) etc.
4 ! would be wrong for rank > 1.
6 ! Contributed by Joost VandeVondele <jv244@cam.ac.uk>
8 INTEGER, PARAMETER, DIMENSION(2,3) :: bo= &
9 RESHAPE((/-1,1,-2,2,-3,3/),(/2,3/))
10 REAL(kind=8), DIMENSION( &
11 bo(1,1):bo(2,1), &
12 bo(1,2):bo(2,2), &
13 bo(1,3):bo(2,3)) :: out_val
14 out_val=0.0
15 END
16 ! Scan for the 105 in the declaration real8 out_val[105];
17 ! { dg-final { scan-tree-dump-times "105" 1 "original" } }