Closed
Description
Hello, with rustc 1.17.0-nightly (8c4f2c6 2017-03-22), the following code
fn main () {
for i 0..2 {
println!("{}", i);
}
}
gives this error message:
error: expected one of `@` or `in`, found `0`
--> src/disasm/mod.rs:27:15
|
27 | for i 0..2 {
|
An improved error message could add a hint : did you mean 'for i in 0..2'