-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Remove maybe_uninit_extra
feature from Vec docs
#92264
Conversation
In `Vec`, two doc tests are using `MaybeUninit::write` , stabilized in 1.55. This makes docs' usage of `maybe_uninit_extra` feature unnecessary.
(rust-highfive has picked a reviewer for you, use r? to override) |
@bors r+ rollup=always |
📌 Commit 584e88d has been approved by |
⌛ Testing commit 584e88d with merge 6c0bd33a85705b4550cedf39a67479ba37c89fa0... |
The job Click to see the possible cause of the failure (guessed by this bot)
|
💔 Test failed - checks-actions |
hrm, tcp test failing? maybe spurious. @bors retry |
⌛ Testing commit 584e88d with merge 5544b11c0ce58d23474f4e49fb7b01d5ba0ecf8e... |
The job Click to see the possible cause of the failure (guessed by this bot)
|
💔 Test failed - checks-actions |
@bors retry |
⌛ Testing commit 584e88d with merge 5374de3363181b1127f0bb6ff91dc6fc1348b22b... |
💥 Test timed out |
@bors retry |
…askrgr Rollup of 7 pull requests Successful merges: - rust-lang#90586 (Relax priv-in-pub lint on generic bounds and where clauses of trait impls.) - rust-lang#92112 (Fix the error of checking `base_expr` twice in type_changing_struct_update) - rust-lang#92147 (rustc_builtin_macros: make asm mod public for rustfmt) - rust-lang#92161 (resolve: Minor miscellaneous cleanups from rust-lang#89059) - rust-lang#92264 (Remove `maybe_uninit_extra` feature from Vec docs) - rust-lang#92303 (Add test cases for issue rust-lang#26186) - rust-lang#92307 (Fix minor typos) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
In
Vec
, two doc tests are usingMaybeUninit::write
, stabilized in 1.55. This makes docs' usage ofmaybe_uninit_extra
feature unnecessary.