]> git.lizzy.rs Git - rust.git/blob - tests/source/imports_granularity_module.rs
chore: bump toolchain
[rust.git] / tests / source / imports_granularity_module.rs
1 // rustfmt-imports_granularity: Module
2
3 use a::{b::c, d::e};
4 use a::{f, g::{h, i}};
5 use a::{j::{self, k::{self, l}, m}, n::{o::p, q}};
6 pub use a::{r::s, t};
7
8 #[cfg(test)]
9 use foo::{a::b, c::d};
10 use foo::e;
11
12 use bar::{
13     // comment
14     a::b,
15     // more comment
16     c::d,
17     e::f,
18 };