OSDN Git Service

2010-04-08 Tobias Burnus <burnus@net-b.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / bounds_check_array_ctor_3.f90
1 ! { dg-do compile }
2 !
3 ! PR 36112
4 ! Check correct bounds-checking behaviour for character-array-constructors.
5 ! This should not need any -fbounds-check and is enabled all the time.
6
7   character(len=128) :: arr(2) = (/ "abc", "foobar" /) ! { dg-error "Different CHARACTER lengths" }
8   arr = (/ "abc", "foobar" /) ! { dg-error "Different CHARACTER lengths" }
9 end