rust/tests/target/issue-1120.rs
2018-06-27 15:28:32 +02:00

9 lines
192 B
Rust

// Ensure that a use at the start of an inline module is correctly formatted.
mod foo {
use bar;
}
// Ensure that an indented `use` gets the correct indentation.
mod foo {
use bar;
}