rust/tests/source/issue-1120.rs

8 lines
190 B
Rust
Raw Normal View History

// 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;
}