1 ! Check that lbound() and ubound() work correctly for assumed shapes.
4 integer, dimension (40, 80) :: a
= 1
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
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