os-rust/src/test/ui/exclusive-range/exclusive_range_pattern_syntax_collision.stderr

21 lines
772 B
Text
Raw Normal View History

2019-07-09 08:44:56 +02:00
error: `X..` range patterns are not supported
--> $DIR/exclusive_range_pattern_syntax_collision.rs:5:13
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | [_, 99.., _] => {},
2019-07-09 08:44:56 +02:00
| ^^^^ help: try using the maximum value for the type: `99..MAX`
2018-08-08 14:28:26 +02:00
error[E0308]: mismatched types
2019-07-09 08:44:56 +02:00
--> $DIR/exclusive_range_pattern_syntax_collision.rs:5:13
|
LL | match [5..4, 99..105, 43..44] {
| ----------------------- this match expression has type `std::ops::Range<{integer}>`
2019-07-09 08:44:56 +02:00
LL | [_, 99.., _] => {},
| ^^^^ expected struct `std::ops::Range`, found integer
2019-07-09 08:44:56 +02:00
|
= note: expected type `std::ops::Range<{integer}>`
found type `{integer}`
2019-07-09 08:44:56 +02:00
error: aborting due to 2 previous errors
2018-08-08 14:28:26 +02:00
For more information about this error, try `rustc --explain E0308`.