used_rename_3.f90

来自「用于进行gcc测试」· F90 代码 · 共 36 行

F90
36
字号
! { dg-do compile }! Tests the fix for PR35997, in which the use association of renamed! valid2 and flag2 was treated as if the renaming were done on use! association in the main program.  Thus, the following, direct use! association of valid and flag did not occur.!! Contributed by Drew McCormack <drewmccormack@mac.com>!module funcinterfacemod  interface    logical function valid ()    end function  end interface  logical :: flag = .true.end modulemodule secondmod  use funcinterfacemod, valid2 => valid, flag2 => flagend modulelogical function valid ()  valid = .true.end functionprogram main  use secondmod  use funcinterfacemod  if (valid ()) then    print *, 'Is Valid'  endif  if (flag) then    print *, 'Is flag'  endifend program! { dg-final { cleanup-modules "funcinterfacemod secondmod" } }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?