📄 repeat_1.f90
字号:
! { 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -