OSDN Git Service

2010-07-29 Tobias Burnus <burnus@net-b.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / bounds_check_10.f90
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
14
15 ! { dg-output "Different CHARACTER lengths .1/2. in array constructor" }