]> git.lizzy.rs Git - rust.git/blob - tests/target/configs-closure_block_indent_threshold-10.rs
Move Indent and Shape to shape.rs from lib.rs
[rust.git] / tests / target / configs-closure_block_indent_threshold-10.rs
1 // rustfmt-closure_block_indent_threshold: 10
2 // Closure block indent threshold
3
4 fn main() {
5     lorem_ipsum(|| {
6         println!("lorem");
7         println!("ipsum");
8         println!("dolor");
9         println!("sit");
10         println!("amet");
11     });
12 }