mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-12 08:36:03 +00:00
15 lines
246 B
Rust
15 lines
246 B
Rust
// rustfmt-wrap_match_arms: true
|
|
// Wrap match-arms
|
|
|
|
fn main() {
|
|
match lorem {
|
|
true => {
|
|
let ipsum = dolor;
|
|
println!("{}", ipsum);
|
|
}
|
|
false => {
|
|
println!("{}", sit)
|
|
}
|
|
}
|
|
}
|