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 see that libcollections/macros.rs implements vec!() but it's not exported from the crate, probably because there's no clean way to re-export the macro in libstd.
The text was updated successfully, but these errors were encountered:
Many of libstd's macros are now re-exported from libcore and libcollections.
Their libstd definitions have moved to a macros_stage0 module and can disappear
after the next snapshot.
Where the two crates had already diverged, I took the libstd versions as
they're generally newer and better-tested. See e.g. d3c831b, which was a fix to
libstd's assert_eq!() that didn't make it into libcore's.
Fixesrust-lang#16806.
fails with
which requires this workaround similar to #16803:
And that has various other negative consequences.
I see that
libcollections/macros.rs
implementsvec!()
but it's not exported from the crate, probably because there's no clean way to re-export the macro inlibstd
.The text was updated successfully, but these errors were encountered: