(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
binding_label_tests_31.f90
! { dg-do compile }
! PR fortran/66695 - this used to ICE.
! Original test case by Vladimir Fuka.
module mod
  implicit none
contains
    integer function F()
    end function
end module
    
module mod_C
  use mod
  implicit none
contains
  subroutine s()  bind(C, name="f")
    integer :: x
      x = F()
  end subroutine
end module