rust/tests/source/configs-reorder_imports_in_group-true.rs

14 lines
271 B
Rust
Raw Normal View History

2017-05-17 12:32:18 +02:00
// rustfmt-reorder_imports: true
// rustfmt-reorder_imports_in_group: true
// Reorder imports in group
/// This comment should stay with `use std::mem;`
use std::mem;
use std::io;
use lorem;
/// This comment should stay with `use ipsum;`
use ipsum;
use dolor;
use sit;