external_procedures_2.f90
来自「用于进行gcc测试」· F90 代码 · 共 42 行
F90
42 行
! { dg-do compile }! Tests the for PR30410, in which the reference to extfunc would! be incorrectly made to the module namespace.!! Contributed by Harald Anlauf <anlauf@gmx.de>!module mod1contains function eval (func, x1) real :: eval, func, x1 external :: func eval = func (x1) end function evalend module mod1!-------------------------------module mod2 use mod1, only : eval real, external :: extfunc ! This was referenced as __mod2__extfunc__contains subroutine foo (x0) real :: x0, x1 x1 = 42 x0 = eval (extfunc, x1) end subroutine fooend module mod2!-------------------------------function extfunc (x) real, intent(in) :: x real :: extfunc extfunc = xend function extfunc!-------------------------------program gfcbug53 use mod2, only : foo real :: x0 = 0 call foo (x0) print *, x0end program gfcbug53! { dg-final { cleanup-modules "mod1 mod2" } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?