|
| 1 | +error[E0658]: half-open range patterns are unstable |
| 2 | + --> $DIR/range_pat_interactions3.rs:18:17 |
| 3 | + | |
| 4 | +LL | y @ ..-7 => assert_eq!(y, -8), |
| 5 | + | ^^^^ |
| 6 | + | |
| 7 | + = note: see issue #67264 <https://github.com/rust-lang/rust/issues/67264> for more information |
| 8 | + = help: add `#![feature(half_open_range_patterns)]` to the crate attributes to enable |
| 9 | + |
| 10 | +error[E0658]: inline-const is experimental |
| 11 | + --> $DIR/range_pat_interactions3.rs:14:20 |
| 12 | + | |
| 13 | +LL | y @ 0..const { 5 + 1 } => assert_eq!(y, 5), |
| 14 | + | ^^^^^ |
| 15 | + | |
| 16 | + = note: see issue #76001 <https://github.com/rust-lang/rust/issues/76001> for more information |
| 17 | + = help: add `#![feature(inline_const)]` to the crate attributes to enable |
| 18 | + |
| 19 | +error[E0658]: exclusive range pattern syntax is experimental |
| 20 | + --> $DIR/range_pat_interactions3.rs:10:17 |
| 21 | + | |
| 22 | +LL | 1 | -3..0 => first_or.push(x), |
| 23 | + | ^^^^^ |
| 24 | + | |
| 25 | + = note: see issue #37854 <https://github.com/rust-lang/rust/issues/37854> for more information |
| 26 | + = help: add `#![feature(exclusive_range_pattern)]` to the crate attributes to enable |
| 27 | + |
| 28 | +error[E0658]: exclusive range pattern syntax is experimental |
| 29 | + --> $DIR/range_pat_interactions3.rs:12:18 |
| 30 | + | |
| 31 | +LL | y @ (0..5 | 6) => or_two.push(y), |
| 32 | + | ^^^^ |
| 33 | + | |
| 34 | + = note: see issue #37854 <https://github.com/rust-lang/rust/issues/37854> for more information |
| 35 | + = help: add `#![feature(exclusive_range_pattern)]` to the crate attributes to enable |
| 36 | + |
| 37 | +error[E0658]: exclusive range pattern syntax is experimental |
| 38 | + --> $DIR/range_pat_interactions3.rs:14:17 |
| 39 | + | |
| 40 | +LL | y @ 0..const { 5 + 1 } => assert_eq!(y, 5), |
| 41 | + | ^^^^^^^^^^^^^^^^^^ |
| 42 | + | |
| 43 | + = note: see issue #37854 <https://github.com/rust-lang/rust/issues/37854> for more information |
| 44 | + = help: add `#![feature(exclusive_range_pattern)]` to the crate attributes to enable |
| 45 | + |
| 46 | +error[E0658]: exclusive range pattern syntax is experimental |
| 47 | + --> $DIR/range_pat_interactions3.rs:18:17 |
| 48 | + | |
| 49 | +LL | y @ ..-7 => assert_eq!(y, -8), |
| 50 | + | ^^^^ |
| 51 | + | |
| 52 | + = note: see issue #37854 <https://github.com/rust-lang/rust/issues/37854> for more information |
| 53 | + = help: add `#![feature(exclusive_range_pattern)]` to the crate attributes to enable |
| 54 | + |
| 55 | +error: aborting due to 6 previous errors |
| 56 | + |
| 57 | +For more information about this error, try `rustc --explain E0658`. |
0 commit comments