rust/tests/target/configs-reorder_imports_in_group-true.rs
2017-05-18 13:26:34 +08:00

13 lines
271 B
Rust

// rustfmt-reorder_imports: true
// rustfmt-reorder_imports_in_group: true
// Reorder imports in group
use std::io;
/// This comment should stay with `use std::mem;`
use std::mem;
use dolor;
/// This comment should stay with `use ipsum;`
use ipsum;
use lorem;
use sit;