view gcc/testsuite/gfortran.dg/binding_label_tests_24.f90 @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do compile }
!
! PR fortran/48858
! PR fortran/55465
!
! Was rejected before but it perfectly valid
!
module m
  interface
    subroutine f() bind(C, name="func")
    end subroutine
  end interface
contains
  subroutine sub()
     call f()
  end subroutine
end module m

module m2
  interface
    subroutine g() bind(C, name="func")
    end subroutine
  end interface
contains
  subroutine sub2()
     call g()
  end subroutine
end module m2