(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
string_length_4.f90
! { dg-do compile }
! { dg-require-effective-target lto }
! { dg-options "-flto" }
! PR 78867, test case adapted from gfortran.dg/string_length_1.f90
program pr78867
  if (len(bar(2_8)) /= 2) STOP 1
contains

  function bar(i)
    integer(8), intent(in) :: i
    character(len=i) :: bar
  
    bar = ""
  end function bar

end program pr78867