re PR fortran/78741 (ICE in gfc_get_symbol_decl, at fortran/trans-decl.c:1534)
[official-gcc.git] / gcc / testsuite / gfortran.dg / shape_2.f90
blob94faae40ac5051214bf17cdf1d3dd04e36d9d70e
1 ! Check that lbound() and ubound() work correctly for assumed shapes.
2 ! { dg-do run }
3 program main
4 integer, dimension (40, 80) :: a = 1
5 call test (a)
6 contains
7 subroutine test (b)
8 integer, dimension (11:, -8:), target :: b
9 integer, dimension (:, :), pointer :: ptr
11 if (lbound (b, 1) .ne. 11) STOP 1
12 if (ubound (b, 1) .ne. 50) STOP 2
13 if (lbound (b, 2) .ne. -8) STOP 3
14 if (ubound (b, 2) .ne. 71) STOP 4
16 if (lbound (b (:, :), 1) .ne. 1) STOP 5
17 if (ubound (b (:, :), 1) .ne. 40) STOP 6
18 if (lbound (b (:, :), 2) .ne. 1) STOP 7
19 if (ubound (b (:, :), 2) .ne. 80) STOP 8
21 if (lbound (b (20:30:3, 40), 1) .ne. 1) STOP 9
22 if (ubound (b (20:30:3, 40), 1) .ne. 4) STOP 10
24 ptr => b
25 if (lbound (ptr, 1) .ne. 11) STOP 11
26 if (ubound (ptr, 1) .ne. 50) STOP 12
27 if (lbound (ptr, 2) .ne. -8) STOP 13
28 if (ubound (ptr, 2) .ne. 71) STOP 14
29 end subroutine test
30 end program main