13 lines
194 B
Rust
13 lines
194 B
Rust
|
// rustfmt-chain_indent: Block
|
||
|
// Chain indent
|
||
|
|
||
|
fn main() {
|
||
|
let lorem = ipsum
|
||
|
.dolor()
|
||
|
.sit()
|
||
|
.amet()
|
||
|
.consectetur()
|
||
|
.adipiscing()
|
||
|
.elit();
|
||
|
}
|