]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-1124.rs
Auto merge of #95315 - compiler-errors:pointee-fix, r=pnkfelix
[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;