view gcc/testsuite/gfortran.dg/string_length_4.f90 @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { 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