rust/tests/target/chains-indent-visual.rs

11 lines
217 B
Rust
Raw Normal View History

2015-11-14 17:47:59 +01:00
// rustfmt-chain_indent: Visual
fn test() {
let x = my_long_function()
2016-04-22 08:53:39 +02:00
.my_even_longer_function()
.my_nested_function()
.some_random_name()
.another_function()
.do_it();
2015-11-14 17:47:59 +01:00
}