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