mirror of
https://github.com/openharmony/third_party_rust_rust.git
synced 2026-07-18 17:34:40 -04:00
10 lines
183 B
Rust
10 lines
183 B
Rust
fn main() {
|
|
loop {
|
|
|_: [_; break]| {} //~ ERROR: `break` outside of a loop
|
|
}
|
|
|
|
loop {
|
|
|_: [_; continue]| {} //~ ERROR: `continue` outside of a loop
|
|
}
|
|
}
|