f933d31115
Also extends an existing test to avoid regression.
10 lines
295 B
Rust
10 lines
295 B
Rust
// rustfmt-reorder_imports: true
|
|
// rustfmt-reorder_imported_names: true
|
|
|
|
/// This comment should stay with `use std::str;`
|
|
use std::str;
|
|
use std::cmp::{d, c, b, a};
|
|
use std::ddd::aaa;
|
|
use std::ddd::{d as p, c as g, b, a};
|
|
// This comment should stay with `use std::ddd:bbb;`
|
|
use std::ddd::bbb;
|