rust/tests/ui/parser/missing-expression-in-for-loop.rs

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

6 lines
101 B
Rust
Raw Normal View History

fn main() {
for i in {
//~^ ERROR missing expression to iterate on in `for` loop
}
}