]> git.lizzy.rs Git - rust.git/blob - tests/source/imports-reorder-lines-and-items.rs
Add One option to group_imports (#4966)
[rust.git] / tests / source / imports-reorder-lines-and-items.rs
1 /// This comment should stay with `use std::str;`
2 use std::str;
3 use std::cmp::{d, c, b, a};
4 use std::ddd::aaa;
5 use std::ddd::{d as p, c as g, b, a};
6 // This comment should stay with `use std::ddd:bbb;`
7 use std::ddd::bbb;