blob: 8586c0cc2e06c5b98b06ac4fb590a31db291b2ce [file] [log] [blame]
! { 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