1error: import ending with `::{self}`
2  --> $DIR/unnecessary_self_imports.rs:6:1
3   |
4LL | use std::fs::{self as alias};
5   | ^^^^^^^^^--------------------
6   |          |
7   |          help: consider omitting `::{self}`: `fs as alias;`
8   |
9   = note: `-D clippy::unnecessary-self-imports` implied by `-D warnings`
10   = note: this will slightly change semantics; any non-module items at the same path will also be imported
11
12error: import ending with `::{self}`
13  --> $DIR/unnecessary_self_imports.rs:8:1
14   |
15LL | use std::rc::{self};
16   | ^^^^^^^^^-----------
17   |          |
18   |          help: consider omitting `::{self}`: `rc;`
19   |
20   = note: this will slightly change semantics; any non-module items at the same path will also be imported
21
22error: aborting due to 2 previous errors
23
24