AArch64: correct constraint on Upl early clobber alternatives
[official-gcc.git] / gcc / testsuite / gfortran.dg / move_alloc_7.f90
blobd2bc82c7ca0fa41cac732ed1ea203bed161ca00b
1 ! { dg-do compile }
3 ! Check that move alloc handles different, type compatible
4 ! declared types
6 type t
7 end type t
8 type, extends(t) :: t2
9 end type t2
11 class(t), allocatable :: x
12 class(t2), allocatable :: y
13 allocate(y)
14 call move_alloc (y, x)
15 end