mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 18:53:39 +00:00
17 lines
382 B
Rust
17 lines
382 B
Rust
// rustfmt-indent_style: Visual
|
|
fn main() {
|
|
match option {
|
|
None => some_function(first_reasonably_long_argument,
|
|
second_reasonably_long_argument),
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
match option {
|
|
None => {
|
|
some_function(first_reasonably_long_argument,
|
|
second_reasonably_long_argument)
|
|
}
|
|
}
|
|
}
|