rust/tests/target/imports/imports-reorder-lines-and-items.rs
David Bar-On 7d34cfaf2c Dedup imports_granularity = "Item" (#4737)
* Fix for issue 4725 - dedup Item imports_granularity (2nd version)

* Use unique() instead of unique_by()
2022-06-11 19:57:47 -05:00

8 lines
221 B
Rust

use std::cmp::{a, b, c, d};
use std::ddd::aaa;
use std::ddd::{a, b, c as g, d as p};
/// This comment should stay with `use std::str;`
use std::str;
// This comment should stay with `use std::ddd:bbb;`
use std::ddd::bbb;