aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/array_reference_2.f90
blob: 6ec65ebb541667ae332417b40ac2207855062a8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
! { dg-do run }
!
! Test the fix for PR89200, in which the indexing did not work in
! the write statement below.
!
! Contributed by Damian Rouson  <damian@sourceryinstitute.org>
!
  type foo
    character(len=:), allocatable :: string
  end type
  type foo_list
    type(foo), allocatable :: entry(:)
  end type
  type(foo_list) list
  character(4) :: buffer
  list = foo_list([foo('12'), foo('34')])
  write(buffer, '(2a2)') list%entry(1)%string, list%entry(2)%string
  if (buffer .ne. '1234') stop 1
  deallocate (list%entry)
end