1! { dg-do compile }
2! PR fortran/95978 - ICE in gfc_match_data, at fortran/decl.c:731
3
4program p
5  type t
6     integer :: a
7     type(t), allocatable :: b
8     data c /t(1)/               ! { dg-error "Unexpected DATA statement" }
9  end type t
10end
11