mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
384ba68d64
This option splits all imports into their own `use` statement.
7 lines
135 B
Rust
7 lines
135 B
Rust
// rustfmt-imports_granularity: Item
|
|
|
|
use a::{b, c, d};
|
|
use a::{f::g, h::{i, j}};
|
|
use a::{l::{self, m, n::o, p::*}};
|
|
use a::q::{self};
|