2018-05-28 21:32:03 -05: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 12:08:50 -06:00
|
|
|
warning: `...` range patterns are deprecated
|
|
|
|
--> $DIR/inclusive-range-pattern-syntax.rs:25:9
|
|
|
|
|
|
|
|
|
LL | &1...2 => {}
|
2018-11-10 15:27:40 -06:00
|
|
|
| ^^^^^^ help: use `..=` for an inclusive range: `&(1..=2)`
|
2018-11-10 12:08:50 -06:00
|
|
|
|