Retro68/gcc/gcc/testsuite/gfortran.dg/realloc_on_assign_21.f90
2015-08-28 17:33:40 +02:00

14 lines
298 B
Fortran

! { dg-do compile }
! { dg-options "-fno-realloc-lhs" }
!
! PR fortran/43366
!
! Invalid assignment to an allocatable polymorphic var.
!
type t
end type t
class(t), allocatable :: var
var = t() ! { dg-error "Assignment to an allocatable polymorphic variable at .1. requires '-frealloc-lhs'" }
end