rust/rustfmt-core/tests/source/issue-1124.rs
2018-02-07 22:48:05 +09:00

16 lines
223 B
Rust

// rustfmt-reorder_imports: true
// rustfmt-normalize_comments: true
use d; use c; use b; use a;
// The previous line has a space after the `use a;`
mod a { use d; use c; use b; use a; }
use z;
use y;
use x;
use a;