rust/src/test/ui/lint/inclusive-range-pattern-syntax.stderr

19 lines
566 B
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
|
note: lint level 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
2018-12-25 09:56:47 -06:00
--> $DIR/inclusive-range-pattern-syntax.rs:15:9
|
LL | &1...2 => {}
| ^^^^^^ help: use `..=` for an inclusive range: `&(1..=2)`