1! { dg-do compile }
2! { dg-options "-std=f2003" }
3
4! PR fortran/36492
5! Check that the error is still emitted for really incorrect constructor.
6
7type t
8  character (2) :: arr (2) = [ "a", "ab" ] ! { dg-error "Different CHARACTER" }
9end type t
10
11end
12