Skip to content

Commit 9dd6eda

Browse files
committed
Prefer min_exhaustive_patterns in compiler
1 parent 61d6443 commit 9dd6eda

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

compiler/rustc_middle/src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
2525
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
2626
#![doc(rust_logo)]
27+
#![cfg_attr(bootstrap, feature(exhaustive_patterns))]
28+
#![cfg_attr(not(bootstrap), feature(min_exhaustive_patterns))]
2729
#![feature(rustdoc_internals)]
2830
#![feature(allocator_api)]
2931
#![feature(array_windows)]
@@ -32,7 +34,6 @@
3234
#![feature(core_intrinsics)]
3335
#![feature(const_type_name)]
3436
#![feature(discriminant_kind)]
35-
#![feature(exhaustive_patterns)]
3637
#![feature(coroutines)]
3738
#![feature(if_let_guard)]
3839
#![feature(inline_const)]

compiler/rustc_target/src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99
1010
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
1111
#![doc(rust_logo)]
12+
#![cfg_attr(bootstrap, feature(exhaustive_patterns))]
13+
#![cfg_attr(not(bootstrap), feature(min_exhaustive_patterns))]
1214
#![feature(rustdoc_internals)]
1315
#![feature(assert_matches)]
14-
#![feature(exhaustive_patterns)]
1516
#![feature(iter_intersperse)]
1617
#![feature(let_chains)]
1718
#![cfg_attr(bootstrap, feature(min_specialization))]

0 commit comments

Comments
 (0)