mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-13 00:56:14 +00:00
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;
|