]> git.lizzy.rs Git - rust.git/blob - tests/target/chains-indent-visual.rs
Merge pull request #681 from rust-lang-nursery/comment-style
[rust.git] / tests / target / chains-indent-visual.rs
1 // rustfmt-chain_indent: Visual
2
3 fn test() {
4     let x = my_long_function()
5                 .my_even_longer_function()
6                 .my_nested_function()
7                 .some_random_name()
8                 .another_function()
9                 .do_it();
10 }