mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-28 19:17:43 +00:00
14 lines
255 B
Rust
14 lines
255 B
Rust
![]() |
// rustfmt-match_block_trailing_comma: true
|
||
|
// Match expressions, no unwrapping of block arms or wrapping of multiline
|
||
|
// expressions.
|
||
|
|
||
|
fn foo() {
|
||
|
match x {
|
||
|
a => {
|
||
|
"line1";
|
||
|
"line2"
|
||
|
}
|
||
|
b => "bar",
|
||
|
}
|
||
|
}
|