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