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

📄 generic_4.f90

📁 linux下编程用 编译软件
💻 F90
字号:
! { dg-do run }! reduced testcase from PR 17740module FOO  interface BAR     module procedure BAR2  end interfacecontains  elemental integer function BAR2(X)    integer, intent(in) :: X    BAR2 = X  end function  subroutine BAZ(y,z)    integer :: Y(3), Z(3)    Z = BAR(Y)  end subroutineend moduleuse foointeger :: y(3), z(3)y = (/1,2,3/)call baz(y,z)if (any (y /= z)) call abort ()end

⌨️ 快捷键说明

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