Strings.toString doesn't compile with integer literals #4298
Labels
breaking change
Changes that break backwards compatibility of the public API.
good first issue
Low hanging fruit for new contributors to get involved!
As seen in the forum,
Strings.toString(1)
does not compile in 4.9.0 because1
could be a signed or unsigned integer andtoString
is available for signed integers since #3773.We should rename the function to
toStringSigned
so that the basictoString
function can be used with integer literals.The text was updated successfully, but these errors were encountered: