re PR fortran/78741 (ICE in gfc_get_symbol_decl, at fortran/trans-decl.c:1534)
[official-gcc.git] / gcc / testsuite / gfortran.dg / realloc_on_assign_22.f90
blobf759c6aca001f6498db0900ae347783116fffaf1
1 ! { dg-do compile }
2 ! { dg-options "-fcoarray=single" }
4 ! PR fortran/43366
6 ! Invalid assignment to an allocatable polymorphic var.
8 type t
9 end type t
10 class(t), allocatable :: caf[:]
12 caf = t() ! { dg-error "Assignment to polymorphic coarray at .1. is not permitted" }
13 end