blob: 880b302d5c03ffbbb3746513058a307d0c440032 (
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
|
! { dg-do compile }
!
! PR fortran/51948
!
type :: t
end type t
contains
function func(x, y)
class(t) :: y
type(t), allocatable :: func
type(t), allocatable :: x
select type (y)
type is(t)
call move_alloc (x, func)
end select
end function
function func2(x, y)
class(t) :: y
class(t), allocatable :: func2
class(t), allocatable :: x
block
block
select type (y)
type is(t)
call move_alloc (x, func2)
end select
end block
end block
end function
end
|