2008-05-30 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gfortran.dg / bounds_check_14.f90
blob0b7edfe565bf12e0b6a74a05e1cd56005f8d89d4
1 ! { dg-do run }
2 ! { dg-options "-fbounds-check" }
4 program test
5 integer x(20)
6 integer, volatile :: n
7 n = 1
8 if (size(x(n:2:-3)) /= 0) call abort
10 call ha0020(-3)
11 call ha0020(-1)
12 end program test
14 subroutine ha0020(mf3)
15 implicit none
16 integer xca(1), xda(1), mf3
18 xca = 1
19 xda = -1
21 xca(1:1) = xda(1:2:mf3)
23 if (any (xca /= -1)) call abort
24 if (any(xda(1:2:mf3) /= xda(1:0))) call abort
25 if (size(xda(1:2:mf3)) /= 0) call abort
26 if (any(shape(xda(1:2:mf3)) /= 0)) call abort
27 if (any(ubound(xda(1:2:mf3)) /= 0)) call abort
28 if (ubound(xda(1:2:mf3),1) /= 0) call abort
29 if (lbound(xda(1:2:mf3),1) /= 1) call abort
31 end subroutine