⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 used_rename_3.f90

📁 用于进行gcc测试
💻 F90
字号:
! { 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -