blob: 60c4f55ddffd8306acac9acd16b61cc84c070cf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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),
}
}
|