view gcc/testsuite/gfortran.dg/allocate_alloc_opt_10.f90 @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 84e7813d76e9
children
line wrap: on
line source

! { dg-do run }
!
! PR 43388: [F2008][OOP] ALLOCATE with MOLD=
!
! Contributed by Janus Weil <janus@gcc.gnu.org>

type :: t1
  integer :: i
end type

type,extends(t1) :: t2
  integer :: j = 4
end type

class(t1),allocatable :: x,y
type(t2) :: z


!!! first example (static)

z%j = 5
allocate(x,MOLD=z)

select type (x)
type is (t2)
  print *,x%j
  if (x%j/=4) STOP 1
  x%j = 5
class default
  STOP 1
end select


!!! second example (dynamic, PR 44541)

allocate(y,MOLD=x)

select type (y)
type is (t2)
  print *,y%j
  if (y%j/=4) STOP 2
class default
  STOP 2
end select

end