rust/tests/source/configs-wrap_match_arms-false.rs

15 lines
249 B
Rust
Raw Normal View History

// rustfmt-wrap_match_arms: false
// Wrap match-arms
fn main() {
match lorem {
true => {
let ipsum = dolor;
println!("{:?}", ipsum);
}
false => {
println!("{}", sit)
}
}
}