view gcc/testsuite/gfortran.dg/whole_file_7.f90 @ 132:d34655255c78

update gcc-8.2
author mir3636
date Thu, 25 Oct 2018 10:21:07 +0900 (2018-10-25)
parents 84e7813d76e9
children
line wrap: on
line source
! { dg-do compile }
! Test the fixes for the first two problems in PR40011
!
! Contributed by Dominique d'Humieres <dominiq@lps.ens.fr>
!
! This function would not compile because -fwhole-file would
! try repeatedly to resolve the function because of the self
! reference.
RECURSIVE FUNCTION eval_args(q)  result (r)
  INTEGER NNODE 
  PARAMETER (NNODE  = 10) 
  TYPE NODE 
    SEQUENCE 
    INTEGER car 
    INTEGER cdr 
  END TYPE NODE 
  TYPE(NODE) heap(NNODE) 
  INTEGER r, q 
  r = eval_args(heap(q)%cdr) 
END FUNCTION eval_args 

function test(n)
  real, dimension(2) :: test
  integer            :: n
  test = n
  return
end function test

program arr     ! The error was not picked up causing an ICE
  real, dimension(2) :: res
  res = test(2) ! { dg-error "Explicit interface required" }
  print *, res
end program