PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git] / gcc / testsuite / gfortran.dg / shape_7.f90
blob84f671f9c4fce1d59cf3c2f318eff0f16d37ec90
1 ! { dg-do compile }
2 ! { dg-options "-fdump-tree-original" }
4 ! PR fortran/52093
6 ! Contributed by Mohammad Rahmani
9 Program Main
10 Implicit None
11 Integer:: X(2,2)
12 Integer:: X2(7:11,8:9)
14 if (size((X)) /= 4) STOP 1
15 if (any (Shape((X)) /= [2,2])) STOP 2
16 if (any (lbound((X)) /= [1,1])) STOP 3
17 if (any (ubound((X)) /= [2,2])) STOP 4
19 if (size(X2) /= 10) STOP 5
20 if (any (Shape(X2) /= [5,2])) STOP 6
21 if (any (lbound(X2) /= [7,8])) STOP 7
22 if (any (ubound(X2) /= [11,9])) STOP 8
24 if (size((X2)) /= 10) STOP 9
25 if (any (Shape((X2)) /= [5,2])) STOP 10
26 if (any (lbound((X2)) /= [1,1])) STOP 11
27 if (any (ubound((X2)) /= [5,2])) STOP 12
28 End Program Main
30 ! { dg-final { scan-tree-dump-times "_gfortran_stop" 0 "original" } }