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)
|
||
|
}
|
||
|
}
|
||
|
}
|