simpleif_1.f90

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

F90
17
字号
! { dg-do run }! PR 17074! Verifies that FORALL and WHERE after a simple if work.DIMENSION ia(4,4)logical,dimension(4,4) :: indexif (.true.) forall (i = 1:4, j = 1:4) ia(i,j) = 1if (any (ia.ne.1)) CALL abort()index(:,:)=.false.index(2,3) = .true.if (.true.) where (index) ia = 2if (ia(2,3).ne.2) call abort()end

⌨️ 快捷键说明

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