blob: 8ef6b3611fa65d8d7fa2ea81769cc932f6f82243 (
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
25
26
27
28
|
! { dg-do run }
! { dg-options "-fcheck=pointer -fdump-tree-original" }
! PR100602 - Erroneous "pointer argument is not associated" runtime error
module m
type :: T
end type
contains
subroutine f(this)
class(T), intent(in) :: this(:)
class(T), allocatable :: ca(:)
class(T), pointer :: cp(:)
if (size (this) == 0) return
write(*,*) size (this)
stop 1
write(*,*) size (ca) ! Check #1
write(*,*) size (cp) ! Check #2
end subroutine f
end module
program main
use m
call f([T::])
end program
! { dg-final { scan-tree-dump-times "_gfortran_runtime_error_at" 2 "original" } }
! { dg-final { scan-tree-dump-times "Allocatable argument .*ca" 1 "original" } }
! { dg-final { scan-tree-dump-times "Pointer argument .*cp" 1 "original" } }
|