repeat_1.f90

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

F90
21
字号
! { dg-do run }! { dg-shouldfail "negative NCOPIES argument to REPEAT intrinsic" }  character(len=80) :: str  integer :: i  i = -1  write(str,"(a)") repeat ("a", f())  if (trim(str) /= "aaaa") call abort  write(str,"(a)") repeat ("a", i)contains  integer function f()    integer :: x = 5    save x    x = x - 1    f = x  end function fend! { dg-output "Fortran runtime error: Argument NCOPIES of REPEAT intrinsic is negative .* line 6)"

⌨️ 快捷键说明

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