summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pointer_array_component_3.f90
blob: 8ef205bc14fe813f066d35616b57c8a4889f18b8 (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
29
30
31
32
33
34
35
36
! { dg-do run }
!
! Test the fix for PR88685, in which the component array references in 'doit'
! were being ascribed to the class pointer 'Cls' itself so that the stride
! measure between elements was wrong.
!
! Contributed by Antony Lewis  <antony@cosmologist.info>
!
program tester
  implicit none
  Type TArr
    integer, allocatable :: CL(:)
  end Type TArr

  type(TArr), allocatable, target :: arr(:,:)
  class(TArr), pointer:: Cls(:,:)
  integer i

  allocate(arr(1,1))
  allocate(arr(1,1)%CL(3))
  arr(1,1)%CL=-1
  cls => arr
  call doit(cls)
  if (any (arr(1,1)%cl .ne. [3,2,1])) stop 3
contains
  subroutine doit(cls)
    class(TArr), pointer :: Cls(:,:)

    cls(1,1)%CL(1) = 3
    cls(1,1)%CL(2:3) = [2,1]

    if (any (Cls(1,1)%CL .ne. [3,2,1])) stop 1
    if (Cls(1,1)%CL(2) .ne. 2) stop 2

  end subroutine doit
end program tester