re PR fortran/78741 (ICE in gfc_get_symbol_decl, at fortran/trans-decl.c:1534)
[official-gcc.git] / gcc / testsuite / gfortran.dg / stfunc_4.f90
blobd6139d523e14c2c2b68d5c6194454bbc2d7d94bd
1 ! { dg-do run }
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
10 st1 (i) = i * i * i
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)) STOP 1
14 if (i .ne. 99) STOP 2
15 contains
16 pure integer function u (x)
17 integer,intent(in) :: x
18 st2 (i) = i * i
19 u = st2(x)
20 end function
21 end