Retro68/gcc/gcc/testsuite/gfortran.dg/pr57904.f90
2014-09-21 19:33:12 +02:00

23 lines
327 B
Fortran

! { dg-do compile }
! { dg-options "-O2" }
program test
call test2 ()
contains
subroutine test2 ()
type t
integer, allocatable :: x
end type t
type t2
class(t), allocatable :: a
end type t2
type(t2) :: one, two
allocate (two%a)
one = two
end subroutine test2
end program test