mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-22 20:53:37 +00:00
22 lines
200 B
Rust
22 lines
200 B
Rust
// 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;
|
|
}
|
|
|
|
use z;
|
|
|
|
use y;
|
|
|
|
use a;
|
|
use x;
|