Mercurial > hg > CbC > CbC_gcc
view gcc/testsuite/gfortran.dg/proc_decl_27.f90 @ 131:84e7813d76e9
gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 07:37:49 +0900 |
parents | 04ced10e8804 |
children |
line wrap: on
line source
! { dg-do compile } ! ! PR 50659: [4.5/4.6/4.7 Regression] [F03] ICE on invalid with procedure interface ! ! Contributed by Andrew Benson <abenson@caltech.edu> module m1 integer :: arrSize end module module m2 contains function Proc (arg) use m1 double precision, dimension(arrSize) :: proc double precision :: arg end function end use m2 implicit none procedure(Proc) :: Proc_Get end