view gcc/testsuite/gfortran.dg/recursive_check_5.f03 @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
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