blob: ec85c11ed8cfe6047de5f59d4f175e1c4f1ef2b8 [file] [log] [blame]
! { dg-do run }
! { dg-options "-fcheck=recursion" }
!
! PR fortran/39577
!
! OK - no recursion
module m
implicit none
contains
subroutine f(rec)
logical :: rec
if(rec) then
call h()
end if
return
entry g()
end subroutine f
subroutine h()
call f(.false.)
end subroutine h
end module m
program test
use m
implicit none
call f(.false.)
call f(.false.)
end program test