]> git.lizzy.rs Git - rust.git/blob - tests/source/issue-1120.rs
removed comment with default: rustfmt-reorder_imports
[rust.git] / tests / source / issue-1120.rs
1 // Ensure that a use at the start of an inline module is correctly formatted.
2 mod foo {use bar;}
3
4 // Ensure that an indented `use` gets the correct indentation.
5 mod foo {
6         use bar;
7 }