view gcc/testsuite/gfortran.dg/recursive_check_5.f03 @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do compile }
! { dg-options "-frecursive" }

! PR fortran/37779
! Check that -frecursive allows using procedures in as procedure expressions.

MODULE m
  IMPLICIT NONE

CONTAINS

  SUBROUTINE test ()
    IMPLICIT NONE
    PROCEDURE(test), POINTER :: procptr

    CALL bar (test) ! { dg-bogus "Non-RECURSIVE" }
    procptr => test ! { dg-bogus "Non-RECURSIVE" }
  END SUBROUTINE test

  INTEGER FUNCTION func ()
    ! Using a result variable is ok of course!
    func = 42 ! { dg-bogus "Non-RECURSIVE" }
  END FUNCTION func

END MODULE m