nvptx, libgfortran: Switch out of "minimal" mode
[official-gcc.git] / gcc / testsuite / gfortran.dg / array_constructor_type_21.f03
blob41e4da346c93ee0f3c7ab5fc4f401e022c631536
1 ! { dg-do compile }
2 ! { dg-options "-std=f2003" }
4 ! PR fortran/36492
5 ! Check that it works with a typespec even for not-the-same-length elements.
7 type t
8   character (1) :: arr (2) = [ character(len=2) :: "a", "ab" ]
9 end type t
11 end