view gcc/testsuite/gfortran.dg/pointer_check_11.f90 @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do run }
! { dg-options "-fcheck=all" }
!
! { dg-shouldfail "Pointer check" }
! { dg-output "Fortran runtime error: Pointer actual argument 'y' is not associated" }
!
!
! PR fortran/50718
!
! Was failing (ICE) with -fcheck=pointer if the dummy had the value attribute.

type t
  integer :: p
end type t

type(t), pointer :: y => null()

call sub(y) ! Invalid: Nonassociated pointer

contains
  subroutine sub (x)
    type(t), value :: x
  end subroutine
end