10 lines
296 B
Rust
10 lines
296 B
Rust
// rustfmt-indent_style: Visual
|
|
|
|
fn test() {
|
|
let x = my_long_function().my_even_longer_function()
|
|
.my_nested_function()
|
|
.some_random_name()
|
|
.another_function()
|
|
.do_it();
|
|
}
|