summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/imports/imports-reorder-lines-and-items.rs
blob: b6380f31c6104117067a1e72098389ef838d11d0 (plain)
1
2
3
4
5
6
7
/// 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;