rust/tests/ui/half-open-range-patterns/exclusive_range_pattern_syntax_collision.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
539 B
Plaintext
Raw Normal View History

error[E0308]: mismatched types
--> $DIR/exclusive_range_pattern_syntax_collision.rs:6:13
2019-07-09 01:44:56 -05:00
|
LL | match [5..4, 99..105, 43..44] {
| ----------------------- this expression has type `[std::ops::Range<{integer}>; 3]`
2019-07-09 01:44:56 -05:00
LL | [_, 99.., _] => {},
| ^^ expected `Range<{integer}>`, found integer
2019-07-09 01:44:56 -05:00
|
= note: expected struct `std::ops::Range<{integer}>`
found type `{integer}`
2019-07-09 01:44:56 -05:00
error: aborting due to previous error
2018-08-08 07:28:26 -05:00
For more information about this error, try `rustc --explain E0308`.