PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / bounds_check_array_ctor_5.f90
blob2d9a35a04e1f600c5b039bb249387cacc718bfad
1 ! { dg-do compile }
3 ! PR 36112
4 ! Check correct bounds-checking behavior for character-array-constructors.
5 ! No need for -fbounds-check, enabled unconditionally.
7 character(len=5) :: s = "hello"
8 character(len=128) :: arr(3)
9 arr = (/ "abc", "foo", s /) ! { dg-error "Different CHARACTER lengths" }
10 end