lto: Remove random_seed from section name.
[official-gcc.git] / gcc / testsuite / gfortran.dg / array_constructor_28.f03
blob382e49aef886f230b8d1df6d13c148104343c771
1 ! { dg-do compile }
2 ! { dg-options "-std=f2003" }
4 ! PR fortran/36492
5 ! Check that the error is still emitted for really incorrect constructor.
7 type t
8   character (2) :: arr (2) = [ "a", "ab" ] ! { dg-error "Different CHARACTER" }
9 end type t
11 end