rust/tests/ui/closures/closure-array-break-length.rs

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

8 lines
227 B
Rust
Raw Normal View History

fn main() {
|_: [_; continue]| {}; //~ ERROR: `continue` outside of a loop
while |_: [_; continue]| {} {} //~ ERROR: `continue` outside of a loop
2018-06-23 07:21:09 -05:00
while |_: [_; break]| {} {} //~ ERROR: `break` outside of a loop
}