diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/bounds_check_10.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/bounds_check_10.f90 | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/bounds_check_10.f90 b/gcc/testsuite/gfortran.dg/bounds_check_10.f90 new file mode 100644 index 000000000..66bc308f0 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/bounds_check_10.f90 @@ -0,0 +1,15 @@ +! { dg-do run } +! { dg-options "-fbounds-check" } +! { dg-shouldfail "Different CHARACTER lengths" } +! PR fortran/33254: No bounds checking for array constructors +program array_char +implicit none +character (len=2) :: x, y +character (len=2) :: z(3) +x = "a " +y = "cd" +z = [y(1:1), y(1:1), x(1:len(trim(x)))] ! should work +z = [trim(x), trim(y), "aaaa"] ! [ "a", "cd", "aaaa" ] should catch first error +end program array_char + +! { dg-output "Different CHARACTER lengths .1/.. in array constructor" } |