]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/source/imports-reorder-lines-and-items.rs
Merge commit 'b7f3f7f6082679da2da9a0b3faf1b5adef3afd3b' into clippyup
[rust.git] / src / tools / rustfmt / 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;