rust/tests/source/configs-wrap_match_arms-true.rs
2017-05-01 15:58:04 +02:00

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