view gcc/testsuite/gfortran.dg/extends_14.f03 @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do compile }
! { dg-options "-fdump-tree-original" }
!
! PR 49466: [4.6/4.7 Regression] Memory leak with assignment of extended derived types
!
! Contributed by Rich Townsend <townsend@astro.wisc.edu>

program evolve_aflow

  implicit none

  type :: state_t
     real, allocatable :: U(:)
  end type

  type, extends(state_t) :: astate_t
  end type

 block ! New scoping unit as "a"/"b" are otherwise implicitly SAVEd
  type(astate_t) :: a,b

  allocate(a%U(1000))

  a = b
 end block
end program 

! { dg-final { scan-tree-dump-times "__builtin_free" 3 "original" } }