mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
11 lines
284 B
Plaintext
11 lines
284 B
Plaintext
error: unexpected `=` after inclusive range
|
|
--> $DIR/range-inclusive-extra-equals.rs:7:13
|
|
|
|
|
LL | if let 1..==3 = 1 {}
|
|
| ^^^^ help: use `..=` instead
|
|
|
|
|
= note: inclusive ranges end with a single equals sign (`..=`)
|
|
|
|
error: aborting due to previous error
|
|
|