]> git.lizzy.rs Git - rust.git/blob - tests/target/issue-1124.rs
Merge pull request #3522 from topecongiro/issue-3521
[rust.git] / tests / target / issue-1124.rs
1 // rustfmt-reorder_imports: true
2
3 use a;
4 use b;
5 use c;
6 use d;
7 // The previous line has a space after the `use a;`
8
9 mod a {
10     use a;
11     use b;
12     use c;
13     use d;
14 }
15
16 use z;
17
18 use y;
19
20 use a;
21 use x;