blob: 233dab878fd9b028fd346c2007dbe42f2b1d5077 [file] [log] [blame]
! Check contained functions with the same name.
module contained_4
contains
subroutine foo1()
call bar()
contains
subroutine bar()
end subroutine bar
end subroutine foo1
subroutine foo2()
call bar()
contains
subroutine bar()
end subroutine bar
end subroutine foo2
end module contained_4
subroutine foo1()
call bar()
contains
subroutine bar()
end subroutine bar
end subroutine
subroutine foo2()
call bar()
contains
subroutine bar()
end subroutine bar
end subroutine foo2