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

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

9 lines
127 B
Rust
Raw Normal View History

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