rust/tests/ui/lint/inclusive-range-pattern-syntax.stderr

26 lines
1.0 KiB
Plaintext
Raw Normal View History

warning: `...` range patterns are deprecated
2018-12-25 09:56:47 -06:00
--> $DIR/inclusive-range-pattern-syntax.rs:9:10
|
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
|
LL | #![warn(ellipsis_inclusive_range_patterns)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
warning: `...` range patterns are deprecated
2021-04-16 04:06:51 -05:00
--> $DIR/inclusive-range-pattern-syntax.rs:16:9
|
LL | &1...2 => {}
| ^^^^^^ 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!
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html>
warning: 2 warnings emitted