Add test for vertical fn_args_density

This commit is contained in:
Ari Koivula 2016-03-13 23:02:03 +02:00
parent db9d129025
commit f4171e97eb
2 changed files with 51 additions and 0 deletions

View file

@ -0,0 +1,19 @@
// rustfmt-fn_args_layout: Block
// rustfmt-fn_args_density: Vertical
// rustfmt-fn_arg_indent: Tabbed
// rustfmt-fn_brace_style: AlwaysNextLine
// Case with only one variable.
fn foo(a: u8) -> u8 {
bar()
}
// Case with 2 variables and some pre-comments.
fn foo(a: u8 /* Comment 1 */, b: u8 /* Comment 2 */) -> u8 {
bar()
}
// Case with 2 variables and some post-comments.
fn foo(/* Comment 1 */ a: u8, /* Comment 2 */ b: u8) -> u8 {
bar()
}

View file

@ -0,0 +1,32 @@
// rustfmt-fn_args_layout: Block
// rustfmt-fn_args_density: Vertical
// rustfmt-fn_arg_indent: Tabbed
// rustfmt-fn_brace_style: AlwaysNextLine
// Case with only one variable.
fn foo(
a: u8
) -> u8
{
bar()
}
// Case with 2 variables and some pre-comments.
fn foo(
a: u8, // Comment 1
b: u8 // Comment 2
) -> u8
{
bar()
}
// Case with 2 variables and some post-comments.
fn foo(
// Comment 1
a: u8,
// Comment 2
b: u8
) -> u8
{
bar()
}