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
On stable (1.26.0), if I open the standard library API docs in my browser and search for one of the three strings panic, env, or vec, the search results include both the module and the macro by that name. Note that the module and the macro have the same path (std::panic, etc.).
On nightly 2018-05-25, those three macros no longer appear in search results, though their corresponding modules do. The macros still show up in the std crate index's macro list (std/index.html#macros). Since the macros and the modules have matching paths, it sounds like the macros are being shadowed somehow.
On stable (1.26.0), if I open the standard library API docs in my browser and search for one of the three strings
panic
,env
, orvec
, the search results include both the module and the macro by that name. Note that the module and the macro have the same path (std::panic
, etc.).On nightly 2018-05-25, those three macros no longer appear in search results, though their corresponding modules do. The macros still show up in the
std
crate index's macro list (std/index.html#macros
). Since the macros and the modules have matching paths, it sounds like the macros are being shadowed somehow.The text was updated successfully, but these errors were encountered: