Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/gcc/testsuite/gfortran.dg/binding_label_tests_31.f90

20 lines
335 B
Fortran

! { 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