rust/tests/source/width-heuristics.rs

29 lines
507 B
Rust
Raw Normal View History

2018-05-02 04:38:23 -05: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;
}
}
}