Stabilize exclusive_range

This commit is contained in:
Ross Smyth 2024-04-27 20:35:32 -04:00
parent 79734f1db8
commit 6967d1c0fc
74 changed files with 300 additions and 619 deletions

View file

@ -42,7 +42,6 @@
//! This is enough to compute usefulness: a pattern in a `match` expression is redundant iff it is
//! not useful w.r.t. the patterns above it:
//! ```compile_fail,E0004
//! # #![feature(exclusive_range_pattern)]
//! # fn foo() {
//! match Some(0u32) {
//! Some(0..100) => {},