mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 18:53:39 +00:00
15 lines
249 B
Rust
15 lines
249 B
Rust
// rustfmt-wrap_match_arms: false
|
|
// Wrap match-arms
|
|
|
|
fn main() {
|
|
match lorem {
|
|
true => {
|
|
let ipsum = dolor;
|
|
println!("{:?}", ipsum);
|
|
}
|
|
false => {
|
|
println!("{}", sit)
|
|
}
|
|
}
|
|
}
|