summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/extends_14.f03
blob: 876e8c703cf099bd5af510ae5d0fd838cbc26702 (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
! { 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

  type(astate_t) :: a,b

  allocate(a%U(1000))

  a = b

end program 

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