rust/tests/target/chains-indent-inherit.rs
2015-11-14 21:50:40 +01:00

10 lines
198 B
Rust

// rustfmt-chain_indent: Inherit
fn test() {
let x = my_long_function()
.my_even_longer_function()
.my_nested_function()
.some_random_name()
.another_function()
.do_it();
}