-
Notifications
You must be signed in to change notification settings - Fork 12.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
members of ::std::u128 module must not be stable #38860
Comments
Adding There’s even a
in libstd/lib.rs… |
seems this only makes |
Edited the issue description to contain the new findings. |
Looks like |
See #38861 . Don't tell bors anything about it yet, I haven't run the test yet. EDIT: I've run it, it works. Ready for review. |
Adding it in a stable form was an accident. It thankfully only leaked to nightly. Fixes rust-lang#38860
Make members of {std,core}::{i128,u128} unstable Fixes #38860
Adding it in a stable form was an accident. It thankfully only leaked to nightly. Fixes rust-lang#38860
Seems that #38482, while correctly making
use ::std::u128;
unstable, accidentally made the members of that module stable. This must not happen, and it may not leak to stable/beta. E.g. this compiles :println!("{}", ::std::u128::MAX);
.cc #35118 (tracking issue)
cc @nagisa
The text was updated successfully, but these errors were encountered: