rust/tests/ui/issues/issue-40782.fixed

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

9 lines
131 B
Rust
Raw Normal View History

2020-07-02 05:32:12 +00:00
//@ run-rustfix
fn main() {
for _i in 0..2 { //~ ERROR missing `in`
}
for _i in 0..2 { //~ ERROR missing `in`
}
2020-07-02 05:32:12 +00:00
}