aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pointer_assign_14.f90
blob: b06dd841bcc3dcaa01124cb76e0679ecf50eb8b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
! { dg-do run }
! PR fortran/94578
! This used to give wrong results.
program main
  implicit none
  type foo
     integer :: x, y,z
  end type foo
  integer :: i
  integer, dimension(:), pointer :: array1d
  type(foo), dimension(2), target :: solution
  integer, dimension(2,2) :: a
  data a /1,2,3,4/
  solution%x = -10
  solution%y = -20
  array1d => solution%x
  array1d = maxval(a,dim=1)
  if (any (array1d /= [2,4])) stop 1
end program main