mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-12 16:45:37 +00:00
13 lines
256 B
Rust
13 lines
256 B
Rust
// rustfmt-closure_block_indent_threshold: 10
|
|
// Closure block indent threshold
|
|
|
|
fn main() {
|
|
lorem_ipsum(|| {
|
|
println!("lorem");
|
|
println!("ipsum");
|
|
println!("dolor");
|
|
println!("sit");
|
|
println!("amet");
|
|
});
|
|
}
|