2017-02-20 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gfortran.dg / bounds_check_10.f90
blob66bc308f060f59da1ea7cc44f99d1a1e1378ec01
1 ! { dg-do run }
2 ! { dg-options "-fbounds-check" }
3 ! { dg-shouldfail "Different CHARACTER lengths" }
4 ! PR fortran/33254: No bounds checking for array constructors
5 program array_char
6 implicit none
7 character (len=2) :: x, y
8 character (len=2) :: z(3)
9 x = "a "
10 y = "cd"
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" }