Skip to content

Commit 9962a01

Browse files
committed
Use min_exhaustive_patterns in core & std
1 parent 0fa7fea commit 9962a01

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

library/core/src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,10 @@
203203
// Language features:
204204
// tidy-alphabetical-start
205205
#![cfg_attr(bootstrap, feature(diagnostic_namespace))]
206+
#![cfg_attr(bootstrap, feature(exhaustive_patterns))]
206207
#![cfg_attr(bootstrap, feature(platform_intrinsics))]
207208
#![cfg_attr(not(bootstrap), feature(freeze_impls))]
209+
#![cfg_attr(not(bootstrap), feature(min_exhaustive_patterns))]
208210
#![feature(abi_unadjusted)]
209211
#![feature(adt_const_params)]
210212
#![feature(allow_internal_unsafe)]
@@ -229,7 +231,6 @@
229231
#![feature(doc_cfg_hide)]
230232
#![feature(doc_notable_trait)]
231233
#![feature(effects)]
232-
#![feature(exhaustive_patterns)]
233234
#![feature(extern_types)]
234235
#![feature(fundamental)]
235236
#![feature(generic_arg_infer)]

library/std/src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,9 @@
270270
//
271271
// Language features:
272272
// tidy-alphabetical-start
273+
#![cfg_attr(bootstrap, feature(exhaustive_patterns))]
273274
#![cfg_attr(bootstrap, feature(platform_intrinsics))]
275+
#![cfg_attr(not(bootstrap), feature(min_exhaustive_patterns))]
274276
#![feature(alloc_error_handler)]
275277
#![feature(allocator_internals)]
276278
#![feature(allow_internal_unsafe)]
@@ -289,7 +291,6 @@
289291
#![feature(doc_masked)]
290292
#![feature(doc_notable_trait)]
291293
#![feature(dropck_eyepatch)]
292-
#![feature(exhaustive_patterns)]
293294
#![feature(if_let_guard)]
294295
#![feature(intra_doc_pointers)]
295296
#![feature(lang_items)]

library/std/src/sync/poison.rs

+8
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,8 @@ impl<T> fmt::Debug for TryLockError<T> {
270270
match *self {
271271
#[cfg(panic = "unwind")]
272272
TryLockError::Poisoned(..) => "Poisoned(..)".fmt(f),
273+
#[cfg(not(panic = "unwind"))]
274+
TryLockError::Poisoned(ref p) => match p._never {},
273275
TryLockError::WouldBlock => "WouldBlock".fmt(f),
274276
}
275277
}
@@ -281,6 +283,8 @@ impl<T> fmt::Display for TryLockError<T> {
281283
match *self {
282284
#[cfg(panic = "unwind")]
283285
TryLockError::Poisoned(..) => "poisoned lock: another task failed inside",
286+
#[cfg(not(panic = "unwind"))]
287+
TryLockError::Poisoned(ref p) => match p._never {},
284288
TryLockError::WouldBlock => "try_lock failed because the operation would block",
285289
}
286290
.fmt(f)
@@ -294,6 +298,8 @@ impl<T> Error for TryLockError<T> {
294298
match *self {
295299
#[cfg(panic = "unwind")]
296300
TryLockError::Poisoned(ref p) => p.description(),
301+
#[cfg(not(panic = "unwind"))]
302+
TryLockError::Poisoned(ref p) => match p._never {},
297303
TryLockError::WouldBlock => "try_lock failed because the operation would block",
298304
}
299305
}
@@ -303,6 +309,8 @@ impl<T> Error for TryLockError<T> {
303309
match *self {
304310
#[cfg(panic = "unwind")]
305311
TryLockError::Poisoned(ref p) => Some(p),
312+
#[cfg(not(panic = "unwind"))]
313+
TryLockError::Poisoned(ref p) => match p._never {},
306314
_ => None,
307315
}
308316
}

0 commit comments

Comments
 (0)