]> git.proxmox.com Git - rustc.git/blob - src/tools/rustfmt/tests/source/imports-reorder-lines-and-items.rs
New upstream version 1.62.1+dfsg1
[rustc.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;