Rebase.
[official-gcc.git] / gcc / testsuite / gfortran.dg / realloc_on_assign_21.f90
blobfd8f9aca939781b3d668897d4612788a0682975b
1 ! { dg-do compile }
2 ! { dg-options "-fno-realloc-lhs" }
4 ! PR fortran/43366
6 ! Invalid assignment to an allocatable polymorphic var.
8 type t
9 end type t
10 class(t), allocatable :: var
12 var = t() ! { dg-error "Assignment to an allocatable polymorphic variable at .1. requires -frealloc-lhs" }
13 end