mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-15 20:27:12 +00: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
|
|
}
|
|
}
|