blob: 0ebd4b510ece63cc6e4c1539b561170cf50d5b92 [file] [log] [blame]
// 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)
}
}
}