]> git.proxmox.com Git - rustc.git/blob - src/tools/rustfmt/tests/target/imports_granularity_module.rs
New upstream version 1.62.1+dfsg1
[rustc.git] / src / tools / rustfmt / tests / target / imports_granularity_module.rs
1 // rustfmt-imports_granularity: Module
2
3 use a::b::c;
4 use a::d::e;
5 use a::f;
6 use a::g::{h, i};
7 use a::j::k::{self, l};
8 use a::j::{self, m};
9 use a::n::o::p;
10 use a::n::q;
11 pub use a::r::s;
12 pub use a::t;
13 use b::c::d;
14 use b::{self};
15
16 use foo::e;
17 #[cfg(test)]
18 use foo::{a::b, c::d};
19
20 use bar::a::b;
21 use bar::c::d;
22 use bar::e::f;