Skip to content

Commit 1cd72b7

Browse files
committedJul 17, 2022
Auto merge of #99362 - JohnTitor:rollup-4d5zo9d, r=JohnTitor
Rollup of 7 pull requests Successful merges: - #94927 (Stabilize `let_chains` in Rust 1.64) - #97915 (Implement `fmt::Write` for `OsString`) - #99036 (Add `#[test]` to functions in test modules) - #99088 (Document and stabilize process_set_process_group) - #99302 (add tracking issue to generic member access APIs) - #99306 (Stabilize `future_poll_fn`) - #99354 (Add regression test for #95829) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents db41351 + 1d19323 commit 1cd72b7

File tree

71 files changed

+619
-984
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+619
-984
lines changed
 

‎compiler/rustc_ast/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#![feature(const_trait_impl)]
1515
#![feature(if_let_guard)]
1616
#![feature(label_break_value)]
17-
#![feature(let_chains)]
17+
#![cfg_attr(bootstrap, feature(let_chains))]
1818
#![feature(min_specialization)]
1919
#![feature(negative_impls)]
2020
#![feature(slice_internals)]

‎compiler/rustc_ast_lowering/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
//! in the HIR, especially for multiple identifiers.
3232
3333
#![feature(box_patterns)]
34-
#![feature(let_chains)]
34+
#![cfg_attr(bootstrap, feature(let_chains))]
3535
#![feature(let_else)]
3636
#![feature(never_type)]
3737
#![recursion_limit = "256"]

0 commit comments

Comments
 (0)