rust/tests/source/issue-2496.rs

17 lines
382 B
Rust
Raw Normal View History

2018-08-31 16:51:36 +02:00
// 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)
}
}
}