mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 18:53:39 +00:00
14 lines
320 B
Plaintext
14 lines
320 B
Plaintext
|
error: missing expression to iterate on in `for` loop
|
||
|
--> $DIR/missing-expression-in-for-loop.rs:2:14
|
||
|
|
|
||
|
LL | for i in {
|
||
|
| ^
|
||
|
|
|
||
|
help: try adding an expression to the `for` loop
|
||
|
|
|
||
|
LL | for i in /* expression */ {
|
||
|
| ++++++++++++++++
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|