mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-21 17:52:12 +03:00
ea8899a445
The selected imports have to have a common prefix in paths.
Before
```rust
$0use std::fmt::Display;
use std::fmt::Debug;$0
```
After
```rust
use std::fmt::{Display, Debug};
```