// 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; |