mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
16 lines
373 B
Plaintext
16 lines
373 B
Plaintext
error: unexpected `>` after inclusive range
|
|
--> $DIR/half-open-range-pats-inclusive-match-arrow.rs:5:14
|
|
|
|
|
LL | 74..=> {},
|
|
| ---^
|
|
| |
|
|
| this is parsed as an inclusive range `..=`
|
|
|
|
|
help: add a space between the pattern and `=>`
|
|
|
|
|
LL | 74.. => {},
|
|
| +
|
|
|
|
error: aborting due to 1 previous error
|
|
|