rust/tests/ui/parser/issues/issue-51602.rs

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

7 lines
98 B
Rust
Raw Normal View History

2018-08-14 14:05:27 -05:00
fn main(){
if i in 1..10 {
2018-11-27 03:56:36 -06:00
//~^ ERROR expected `{`, found keyword `in`
2018-08-14 14:05:27 -05:00
break;
}
}