blob: be2ca1715f9724211d45dbc152a3544dceb08285 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
! { dg-do run }
!
! Test the fix for PR104272 in which allocate caused an unwanted finalization
!
! Contributed by Kai Germaschewski <kai.germaschewski@gmail.com>
!
module solver_m
implicit none
type, abstract, public :: solver_base_t
end type solver_base_t
type, public, extends(solver_base_t) :: solver_gpu_t
complex, dimension(:), allocatable :: x
contains
final :: solver_gpu_final
end type solver_gpu_t
type, public, extends(solver_gpu_t) :: solver_sparse_gpu_t
contains
final :: solver_sparse_gpu_final
end type solver_sparse_gpu_t
integer :: final_counts = 0
contains
impure elemental subroutine solver_gpu_final(this)
type(solver_gpu_t), intent(INOUT) :: this
final_counts = final_counts + 1
end subroutine solver_gpu_final
impure elemental subroutine solver_sparse_gpu_final(this)
type(solver_sparse_gpu_t), intent(INOUT) :: this
final_counts = final_counts + 10
end subroutine solver_sparse_gpu_final
end module solver_m
subroutine test
use solver_m
implicit none
class(solver_base_t), dimension(:), allocatable :: solver
allocate(solver_sparse_gpu_t :: solver(2))
if (final_counts .ne. 0) stop 1
end subroutine
program main
use solver_m
implicit none
call test
if (final_counts .ne. 22) stop 2 ! Scalar finalizers for rank 1/size 2
end program
|