blob: f0fc485a3c218dc1cc00be7eaeeae114d8714844 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// 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;
|