rust/tests/source/issue-1120.rs
2018-03-02 15:07:13 +13:00

9 lines
224 B
Rust

// rustfmt-reorder_imports: true
// 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;
}