mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-21 17:52:12 +03:00
15 lines
213 B
Rust
15 lines
213 B
Rust
// rustfmt-imports_granularity: Crate
|
|
|
|
use foo::a;
|
|
use foo::a;
|
|
use foo::b;
|
|
use foo::b as b2;
|
|
use foo::b::f;
|
|
use foo::b::g;
|
|
use foo::b::g as g2;
|
|
use foo::c;
|
|
use foo::d::e;
|
|
use qux::h;
|
|
use qux::h as h2;
|
|
use qux::i;
|