shape_4.f90
来自「用于进行gcc测试」· F90 代码 · 共 13 行
F90
13 行
! PR 35001 - we need to return 0 for the shapes of! negative extents. Test case adapted from Tobias Burnus.program main implicit none integer :: i,j, a(10,10),res(2) j = 1 i = 10 res = shape(a(1:1,i:j:1)) if (res(1) /=1 .or. res(2) /= 0) call abort res = shape(a(1:1,j:i:-1)) if (res(1) /=1 .or. res(2) /= 0) call abortend program main
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?