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
I'd expect that renaming the alias would rename the alias itself, but not the underlying symbol (especially if the underlying symbol comes from std or some other crate):
Code to play with:
mod foo {pub(crate)fnbar(){}}use foo::bar as baz;pubfnrun(){baz();}