]> git.lizzy.rs Git - rust.git/blob - tests/target/configs-fn_call_style-block.rs
Merge pull request #1482 from regexident/configs-tests
[rust.git] / tests / target / configs-fn_call_style-block.rs
1 // rustfmt-fn_call_style: Block
2 // Function call style
3
4 fn main() {
5     lorem(
6         "lorem",
7         "ipsum",
8         "dolor",
9         "sit",
10         "amet",
11         "consectetur",
12         "adipiscing",
13         "elit",
14     );
15 }