2018-05-28 19:32:03 -07:00
|
|
|
warning: `...` range patterns are deprecated
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/inclusive-range-pattern-syntax.rs:9:10
|
2018-05-28 19:32:03 -07:00
|
|
|
|
|
|
|
|
LL | 1...2 => {}
|
|
|
|
| ^^^ help: use `..=` for an inclusive range
|
|
|
|
|
|
2022-09-18 19:55:36 +04: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 08:56:47 -07:00
|
|
|
--> $DIR/inclusive-range-pattern-syntax.rs:4:9
|
2018-05-28 19:32:03 -07:00
|
|
|
|
|
|
|
|
LL | #![warn(ellipsis_inclusive_range_patterns)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-11-10 18:08:50 +00:00
|
|
|
warning: `...` range patterns are deprecated
|
2021-04-16 11:06:51 +02: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 11:06:51 +02:00
|
|
|
|
|
2021-06-16 14:27:44 +02:00
|
|
|
= warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
|
2021-08-09 17:45:01 +02: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 16:30:09 +01:00
|
|
|
warning: 2 warnings emitted
|
|
|
|
|