view gcc/testsuite/gfortran.dg/impure_spec_expr_1.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 }
! Checks the fix for PR33664, in which the apparent function reference
! n(1) caused a seg-fault.
!
! Contributed by Henrik Holst <holst@matmech.com>
!
module test
contains
  subroutine func_1(u,n)
    integer :: n
    integer :: u(n(1))  ! { dg-error "must be PURE" }
  end subroutine
end module test