blob: b6aa79ae260e936d08eee00a8ff2d32d6f2ff5ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
! { 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
|