2 ! { dg-options "-fbounds-check" }
3 ! { dg-shouldfail "Different CHARACTER lengths" }
4 ! PR fortran/33254: No bounds checking for array constructors
7 character (len
=2) :: x
, y
8 character (len
=2) :: z(3)
11 z
= [y(1:1), y(1:1), x(1:len(trim(x
)))] ! should work
12 z
= [trim(x
), trim(y
), "aaaa"] ! [ "a", "cd", "aaaa" ] should catch first error
13 end program array_char
15 ! { dg-output "Different CHARACTER lengths .1/.. in array constructor" }