2018-05-28 21:32:03 -05:00
|
|
|
warning: `...` range patterns are deprecated
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/inclusive-range-pattern-syntax.rs:9:10
|
2018-05-28 21:32:03 -05:00
|
|
|
|
|
|
|
|
LL | 1...2 => {}
|
|
|
|
| ^^^ help: use `..=` for an inclusive range
|
|
|
|
|
|
2022-09-18 10:55:36 -05:00
|
|
|
= warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
|
|
|
|
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html>
|
2020-01-22 17:57:38 -06:00
|
|
|
note: the lint level is defined here
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/inclusive-range-pattern-syntax.rs:4:9
|
2018-05-28 21:32:03 -05:00
|
|
|
|
|
|
|
|
LL | #![warn(ellipsis_inclusive_range_patterns)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-11-10 12:08:50 -06:00
|
|
|
warning: `...` range patterns are deprecated
|
2021-04-16 04:06:51 -05:00
|
|
|
--> $DIR/inclusive-range-pattern-syntax.rs:16:9
|
2018-11-10 12:08:50 -06:00
|
|
|
|
|
|
|
|
LL | &1...2 => {}
|
2018-11-10 15:27:40 -06:00
|
|
|
| ^^^^^^ help: use `..=` for an inclusive range: `&(1..=2)`
|
2021-04-16 04:06:51 -05:00
|
|
|
|
|
2021-06-16 07:27:44 -05:00
|
|
|
= warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
|
2021-08-09 10:45:01 -05:00
|
|
|
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html>
|
2018-11-10 12:08:50 -06:00
|
|
|
|
2020-03-11 10:30:09 -05:00
|
|
|
warning: 2 warnings emitted
|
|
|
|
|