2 ! { dg-options "-std=legacy" }
4 ! Tests the fix for PR29389, in which the statement function would not be
5 ! recognised as PURE within a PURE procedure.
7 ! Contributed by Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
9 INTEGER :: st1
, i
= 99, a(4), q
= 6
11 FORALL(i
=1:4) a(i
) = st1 (i
)
12 FORALL(i
=1:4) a(i
) = u (a(i
)) - a(i
)** 2
13 if (any (a
.ne
. 0)) call abort ()
14 if (i
.ne
. 99) call abort ()
16 pure
integer function u (x
)
17 integer,intent(in
) :: x