assumed_shape_ranks_2.f90

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

F90
48
字号
! { dg-do run }! Tests the fix for the regression PR26716.! Test contributed by Martin Reinecke  <martin@mpa-garching.mpg.de>!module mod1  implicit none  interface foo     module procedure foo1, foo2  end interfacecontains  subroutine foo1(bar, i)    real bar    integer i    i = 1   end subroutine  subroutine foo2(bar, i)    real bar(3)    integer i    i = 2  end subroutineend module mod1  use mod1  implicit none  real bar(3)  integer i  i = 0  call foo (1e0, i)  if (i .ne. 1) call abort ()  i = 0  call foo (bar(1), i)  if (i .ne. 1) call abort ()  i = 0  call foo (bar, i)  if (i .ne. 2) call abort ()end! { dg-final { cleanup-modules "mod1" } }

⌨️ 快捷键说明

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