rust/tests/target/merge_imports.rs

17 lines
233 B
Rust
Raw Normal View History

// rustfmt-merge_imports: true
use a::{a, b, c, d, e, f, g};
#[doc(hidden)]
use a::b;
use a::{c, d};
#[doc(hidden)]
use a::b;
use a::{c, d, e};
use foo::{a, b, c};
pub use foo::{bar, foobar};
use a::b::c::{d, xxx, yyy, zzz, *};