14 lines
271 B
Rust
14 lines
271 B
Rust
|
// 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;
|