comparison gcc/testsuite/gfortran.dg/move_alloc_7.f90 @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 ! { dg-do compile }
2 !
3 ! Check that move alloc handles different, type compatible
4 ! declared types
5 !
6 type t
7 end type t
8 type, extends(t) :: t2
9 end type t2
10
11 class(t), allocatable :: x
12 class(t2), allocatable :: y
13 allocate(y)
14 call move_alloc (y, x)
15 end