lto: Remove random_seed from section name.
[official-gcc.git] / gcc / testsuite / gfortran.dg / array_constructor_25.f03
blobb18746815c5880c7258da99886898ee1d25c1bf0
1 ! { dg-do compile }
2 ! { dg-options "-std=f2003" }
4 ! PR fortran/36492
5 ! Check for incorrect error message with -std=f2003.
6 ! Reduced test based on the one from comment #4, PR 36492.
8 type t
9   character (2) :: arr (1) = [ "a" ]
10 end type t
12 end