2018-05-28 19:32:03 -07:00
|
|
|
warning: `...` range patterns are deprecated
|
|
|
|
--> $DIR/inclusive-range-pattern-syntax.rs:19:10
|
|
|
|
|
|
|
|
|
LL | 1...2 => {}
|
|
|
|
| ^^^ help: use `..=` for an inclusive range
|
|
|
|
|
|
|
|
|
note: lint level defined here
|
|
|
|
--> $DIR/inclusive-range-pattern-syntax.rs:14:9
|
|
|
|
|
|
|
|
|
LL | #![warn(ellipsis_inclusive_range_patterns)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-11-10 18:08:50 +00:00
|
|
|
warning: `...` range patterns are deprecated
|
|
|
|
--> $DIR/inclusive-range-pattern-syntax.rs:25:9
|
|
|
|
|
|
|
|
|
LL | &1...2 => {}
|
2018-11-10 21:27:40 +00:00
|
|
|
| ^^^^^^ help: use `..=` for an inclusive range: `&(1..=2)`
|
2018-11-10 18:08:50 +00:00
|
|
|
|