rust/src/test/ui/lint/inclusive-range-pattern-syntax.stderr
2018-12-25 21:08:33 -07:00

19 lines
566 B
Plaintext

warning: `...` range patterns are deprecated
--> $DIR/inclusive-range-pattern-syntax.rs:9:10
|
LL | 1...2 => {}
| ^^^ help: use `..=` for an inclusive range
|
note: lint level defined here
--> $DIR/inclusive-range-pattern-syntax.rs:4:9
|
LL | #![warn(ellipsis_inclusive_range_patterns)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
warning: `...` range patterns are deprecated
--> $DIR/inclusive-range-pattern-syntax.rs:15:9
|
LL | &1...2 => {}
| ^^^^^^ help: use `..=` for an inclusive range: `&(1..=2)`