nvptx, libgfortran: Switch out of "minimal" mode
[official-gcc.git] / gcc / testsuite / gfortran.dg / auto_dealloc_2.f90
blob93d4f95ddf6faa50c37b439a963bf003d715614f
1 ! { dg-do compile }
2 ! { dg-options "-fdump-tree-original" }
4 ! PR 47637: [OOP] Memory leak involving INTENT(OUT) CLASS argument w/ allocatable components
6 ! Contributed by Rich Townsend <townsend@astro.wisc.edu>
8 program test
10 type :: t
11 integer, allocatable :: i(:)
12 end type
14 block ! New block as the main program implies SAVE
15 type(t) :: a
17 call init(a)
18 call init(a)
19 end block
20 contains
22 subroutine init(x)
23 class(t), intent(out) :: x
24 allocate(x%i(1000))
25 end subroutine
27 end program
29 ! { dg-final { scan-tree-dump-times "__builtin_free" 4 "original" } }
30 ! { dg-final { scan-tree-dump-times "_vptr->_final \\(&desc" 1 "original" } }