(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
public_private_module_10.f90
! PR 87734
module m_vstring
  implicit none

  public :: vstring_length

contains

  subroutine vstring_cast()
    character ( len = vstring_length() ) :: char_string
  end subroutine

  pure integer function vstring_length ()
  end function

end module