lto: Remove random_seed from section name.
[official-gcc.git] / gcc / testsuite / gfortran.dg / finalize_32.f90
blob45fb7c1e30150508ca5cc73f7c1debc3d2d58845
1 ! { dg-do compile }
3 ! PR 79311: [OOP] ICE in generate_finalization_wrapper, at fortran/class.c:1992
5 ! Contributed by DIL <liakhdi@ornl.gov>
7 module tensor_recursive
8 implicit none
10 type :: tens_signature_t
11 contains
12 final :: tens_signature_dtor
13 end type
15 type :: tens_header_t
16 type(tens_signature_t) :: signature
17 contains
18 final :: tens_header_dtor
19 end type
21 contains
23 subroutine tens_signature_dtor(this)
24 type(tens_signature_t) :: this
25 end subroutine
27 subroutine tens_header_dtor(this)
28 type(tens_header_t) :: this
29 end subroutine
31 end