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