rust/tests/ui/array-slice-vec/array-break-length.rs

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

10 lines
183 B
Rust
Raw Normal View History

fn main() {
loop {
|_: [_; break]| {} //~ ERROR: `break` outside of a loop
}
loop {
|_: [_; continue]| {} //~ ERROR: `continue` outside of a loop
}
}