9 lines
108 B
Rust
9 lines
108 B
Rust
fn main() {
|
|
match true {
|
|
true => 'a: {
|
|
break 'a;
|
|
}
|
|
_ => (),
|
|
}
|
|
}
|