Skip to content

Commit 3d7afa0

Browse files
committed
Update std and compiler
1 parent 971df1c commit 3d7afa0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: core/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@
192192
//
193193
// Language features:
194194
// tidy-alphabetical-start
195+
#![cfg_attr(bootstrap, feature(min_exhaustive_patterns))]
195196
#![feature(abi_unadjusted)]
196197
#![feature(adt_const_params)]
197198
#![feature(allow_internal_unsafe)]
@@ -225,7 +226,6 @@
225226
#![feature(link_llvm_intrinsics)]
226227
#![feature(macro_metavar_expr)]
227228
#![feature(marker_trait_attr)]
228-
#![feature(min_exhaustive_patterns)]
229229
#![feature(min_specialization)]
230230
#![feature(multiple_supertrait_upcastable)]
231231
#![feature(must_not_suspend)]

Diff for: std/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,7 @@
272272
//
273273
// Language features:
274274
// tidy-alphabetical-start
275+
#![cfg_attr(bootstrap, feature(min_exhaustive_patterns))]
275276
#![feature(alloc_error_handler)]
276277
#![feature(allocator_internals)]
277278
#![feature(allow_internal_unsafe)]
@@ -299,7 +300,6 @@
299300
#![feature(link_cfg)]
300301
#![feature(linkage)]
301302
#![feature(macro_metavar_expr_concat)]
302-
#![feature(min_exhaustive_patterns)]
303303
#![feature(min_specialization)]
304304
#![feature(must_not_suspend)]
305305
#![feature(needs_panic_runtime)]

0 commit comments

Comments
 (0)