all_bounds_1.f90

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

F90
18
字号
! { dg-do run }! { dg-options "-fbounds-check" }! { dg-shouldfail "Incorrect extent in return value of ALL intrinsic" }program main  logical(kind=4), allocatable :: f(:,:)  logical(kind=4) :: res(3)  character(len=80) line  allocate (f(2,2))  f = .false.  f(1,1) = .true.  f(2,1) = .true.  res = all(f,dim=1)  write(line,fmt='(80L1)') resend program main! { dg-output "Fortran runtime error: Incorrect extent in return value of ALL intrinsic in dimension 1: is 3, should be 2" }

⌨️ 快捷键说明

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