(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
char_array_constructor_4.f90
! PR 30319 - Bogus warning from -Warray-bounds during string assignment
! { dg-do compile }
! { dg-options "-O2 -Warray-bounds" }

program test_bounds

  character(256) :: foo

  foo = '1234'                 ! { dg-bogus "\\\[-Warray-bounds" }

  print *, foo

end program test_bounds