1! { dg-do compile }
2! { dg-options "-std=f2003" }
3!
4! PR fortran/43366
5!
6! Invalid assignment to an allocatable polymorphic var.
7!
8type t
9end type t
10class(t), allocatable :: var
11
12var = t() ! { dg-error "Fortran 2008: Assignment to an allocatable polymorphic variable" }
13end
14