mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 20:54:13 +00:00
14 lines
272 B
Rust
14 lines
272 B
Rust
// rustfmt-reorder_imports: true
|
|
// rustfmt-reorder_imports_in_group: false
|
|
// Reorder imports in group
|
|
|
|
use dolor;
|
|
/// This comment should stay with `use ipsum;`
|
|
use ipsum;
|
|
|
|
use lorem;
|
|
use sit;
|
|
use std::io;
|
|
/// This comment should stay with `use std::mem;`
|
|
use std::mem;
|