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.
5!
6! Contributed by Joost VandeVondele <jv244@cam.ac.uk>
7!
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
15END
16! Scan for the 105 in the declaration real8 out_val[105];
17! { dg-final { scan-tree-dump-times "105" 1 "original" } }
18
19