rust/tests/target/issue-1124.rs

22 lines
200 B
Rust
Raw Normal View History

// rustfmt-reorder_imports: true
use a;
use b;
use c;
use d;
// The previous line has a space after the `use a;`
mod a {
use a;
use b;
use c;
use d;
}
2018-03-14 20:06:54 -05:00
use z;
use y;
use a;
use x;