PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / bounds_check_array_ctor_4.f90
blobe51b5784620b8ee08220c1f1e66dfe1e84253e2c
1 ! { dg-do run }
2 ! { dg-options "-fbounds-check" }
3 ! { dg-shouldfail "foo" }
5 ! PR 36112
6 ! Check correct bounds-checking behavior for character-array-constructors.
8 call test ("short", "this is long")
9 contains
10 subroutine test(r, s)
11 character(len=*) :: r, s
12 character(len=128) :: arr(2)
13 arr = (/ r, s /)
14 end subroutine test
15 end
16 ! { dg-output "Different CHARACTER lengths \\(5/12\\) in array constructor" }