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
It is because use foo as bar is resolved before expansion of m::foo!(foo), and we didn't rewrite the aliased PerNs of bar. Note that legacy macro invocation (i.e. unquatified identifier like foo!) is not affected, because it is expanded before any item resolutions.
The text was updated successfully, but these errors were encountered:
It is because
use foo as bar
is resolved before expansion ofm::foo!(foo)
, and we didn't rewrite the aliasedPerNs
ofbar
. Note that legacy macro invocation (i.e. unquatified identifier likefoo!
) is not affected, because it is expanded before any item resolutions.The text was updated successfully, but these errors were encountered: