value_2.f90

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

F90
22
字号
! { dg-do compile }! { dg-options "-std=f95" }! Tests the standard check in the patch for PR29642, which requested the! implementation of the F2003 VALUE attribute for gfortran.!! Contributed by Paul Thomas  <pault@gcc.gnu.org> !program test_value  integer(8) :: i = 42  call bar (i)  if (i /= 42) call abort ()contains  subroutine bar (i)    integer(8) :: i    value :: i      ! { dg-error "Fortran 2003: VALUE" }    if (i /= 42) call abort ()    i = 99    if (i /= 99) call abort ()  end subroutine barend program test_value

⌨️ 快捷键说明

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