]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-1124.rs
Merge commit '39683d8eb7a32a74bea96ecbf1e87675d3338506' into sync_cg_gcc-2022-03-26
[rust.git] / src / tools / rustfmt / 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;