c_funloc_tests_5.f03
来自「用于进行gcc测试」· F03 代码 · 共 27 行
F03
27 行
! { dg-do compile }! Test that the arg checking for c_funloc verifies the procedures are ! C interoperable.module c_funloc_tests_5 use, intrinsic :: iso_c_binding, only: c_funloc, c_funptrcontains subroutine sub0() bind(c) type(c_funptr) :: my_c_funptr my_c_funptr = c_funloc(sub1) ! { dg-error "must be BIND.C." } my_c_funptr = c_funloc(func0) ! { dg-error "must be BIND.C." } end subroutine sub0 subroutine sub1() end subroutine sub1 function func0(desired_retval) use, intrinsic :: iso_c_binding, only: c_int integer(c_int), value :: desired_retval integer(c_int) :: func0 func0 = desired_retval end function func0end module c_funloc_tests_5
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?