internal_references_1.f90

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

F90
37
字号
! { dg-do compile }! This tests the patch for PRs 24327, 25024 & 25625, which! are all connected with references to internal procedures.! This is a composite of the PR testcases; and each is! labelled by PR.!! Contributed by Paul Thomas  <pault@gcc.gnu.org>!! PR25625 - would neglect to point out that there were 2 subroutines p.module m  implicit nonecontains  subroutine p (i)   ! { dg-error "is already defined" }    integer :: i  end subroutine  subroutine p (i)   ! { dg-error "is already defined" }   integer :: i  end subroutineend module!! PR25124 - would happily ignore the declaration of foo in the main program.program testreal :: foo, x      ! { dg-error "explicit interface and must not have attributes declared" }x = bar ()          ! This is OK because it is a regular reference.x = foo ()contains    function foo () ! { dg-error "explicit interface and must not have attributes declared" }      foo = 1.0    end function foo    function bar ()      bar = 1.0    end function barend program test! { dg-final { cleanup-modules "m" } }

⌨️ 快捷键说明

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