2017-04-30 16:49:39 -05:00
|
|
|
// rustfmt-fn_args_density: Vertical
|
|
|
|
// Function arguments density
|
|
|
|
|
|
|
|
trait Lorem {
|
2017-06-11 23:01:41 -05:00
|
|
|
fn lorem(
|
|
|
|
ipsum: Ipsum,
|
|
|
|
dolor: Dolor,
|
|
|
|
sit: Sit,
|
|
|
|
amet: Amet,
|
|
|
|
);
|
2017-04-30 16:49:39 -05:00
|
|
|
|
2017-06-11 23:01:41 -05:00
|
|
|
fn lorem(
|
|
|
|
ipsum: Ipsum,
|
|
|
|
dolor: Dolor,
|
|
|
|
sit: Sit,
|
|
|
|
amet: Amet,
|
|
|
|
) {
|
2017-04-30 16:49:39 -05:00
|
|
|
// body
|
|
|
|
}
|
|
|
|
|
2017-06-11 23:01:41 -05:00
|
|
|
fn lorem(
|
|
|
|
ipsum: Ipsum,
|
|
|
|
dolor: Dolor,
|
|
|
|
sit: Sit,
|
|
|
|
amet: Amet,
|
|
|
|
consectetur: onsectetur,
|
|
|
|
adipiscing: Adipiscing,
|
|
|
|
elit: Elit,
|
|
|
|
);
|
2017-04-30 16:49:39 -05:00
|
|
|
|
2017-06-11 23:01:41 -05:00
|
|
|
fn lorem(
|
|
|
|
ipsum: Ipsum,
|
|
|
|
dolor: Dolor,
|
|
|
|
sit: Sit,
|
|
|
|
amet: Amet,
|
|
|
|
consectetur: onsectetur,
|
|
|
|
adipiscing: Adipiscing,
|
|
|
|
elit: Elit,
|
|
|
|
) {
|
2017-04-30 16:49:39 -05:00
|
|
|
// body
|
|
|
|
}
|
|
|
|
}
|