mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-28 20:16:58 +03:00
9 lines
108 B
Rust
9 lines
108 B
Rust
fn main() {
|
|
match true {
|
|
true => 'a: {
|
|
break 'a;
|
|
}
|
|
_ => (),
|
|
}
|
|
}
|