You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given the following line of code: let arg1 = &args[1].parse::<String>().unwrap();
RA is unable to specify a correct inlay type hint for arg1.
RA thinks arg1 is of type &{unknown} and no helpful intellisense is being provided for it, even though it's easy to tell that arg1 is String
The text was updated successfully, but these errors were encountered:
@matklad Sorry for tagging you, but do you know if this is expected? In hindsight, looks like this should already be addressed in the codebase. I'd appreciate insights on where to look for the fix
Given the following line of code:
let arg1 = &args[1].parse::<String>().unwrap();
RA is unable to specify a correct inlay type hint for arg1.
RA thinks
arg1
is of type&{unknown}
and no helpful intellisense is being provided for it, even though it's easy to tell thatarg1
isString
The text was updated successfully, but these errors were encountered: