rust/tests/target/width-heuristics.rs

25 lines
462 B
Rust
Raw Normal View History

2018-05-02 11:38:23 +02:00
// rustfmt-max_width: 120
// elems on multiple lines for max_width 100, but same line for max_width 120
fn foo(e: Enum) {
match e {
Enum::Var { elem1, elem2, elem3 } => {
return;
}
}
}
// elems not on same line for either max_width 100 or 120
fn bar(e: Enum) {
match e {
Enum::Var {
elem1,
elem2,
elem3,
elem4,
} => {
return;
}
}
}