Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
134 B
Rust
Raw Normal View History

2020-07-02 14:32:12 +09:00
// run-rustfix
2018-09-19 16:23:21 -07:00
fn main() {
2018-11-27 10:56:36 +01:00
for i in in 1..2 { //~ ERROR expected iterable, found keyword `in`
2018-09-19 16:23:21 -07:00
println!("{}", i);
}
}