aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/recursive_check_13.f90
blob: 05d0c2fac54e63ba2ee6132373cac4241d959647 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
! { dg-do run }
! { dg-options "-fcheck=recursion" }
! { dg-shouldfail "Recursion check" }
!
! { dg-output "Fortran runtime error: Recursive call to nonrecursive procedure 'master.0.f'" }
!
! PR fortran/39577
!
! invalid - 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(.true.)
end program test