2019-07-09 01:44:56 -05:00
|
|
|
error: `X..` range patterns are not supported
|
|
|
|
--> $DIR/exclusive_range_pattern_syntax_collision.rs:5:13
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | [_, 99.., _] => {},
|
2019-07-09 01:44:56 -05:00
|
|
|
| ^^^^ help: try using the maximum value for the type: `99..MAX`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2019-07-09 01:44:56 -05:00
|
|
|
error: arbitrary expressions aren't allowed in patterns
|
|
|
|
--> $DIR/exclusive_range_pattern_syntax_collision.rs:5:13
|
|
|
|
|
|
|
|
|
LL | [_, 99.., _] => {},
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error[E0029]: only char and numeric types are allowed in range patterns
|
|
|
|
--> $DIR/exclusive_range_pattern_syntax_collision.rs:5:13
|
|
|
|
|
|
|
|
|
LL | [_, 99.., _] => {},
|
|
|
|
| ^^^^ ranges require char or numeric types
|
|
|
|
|
|
|
|
|
= note: start type: {integer}
|
|
|
|
= note: end type: [type error]
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2019-07-09 01:44:56 -05:00
|
|
|
For more information about this error, try `rustc --explain E0029`.
|