rust-clippy/tests/ui/unnecessary_self_imports.stderr
2022-10-01 10:03:06 +00:00

23 lines
789 B
Text

error: import ending with `::{self}`
--> $DIR/unnecessary_self_imports.rs:6:1
|
LL | use std::fs::{self as alias};
| ^^^^^^^^^--------------------
| |
| help: consider omitting `::{self}`: `fs as alias;`
|
= note: this will slightly change semantics; any non-module items at the same path will also be imported
= note: `-D clippy::unnecessary-self-imports` implied by `-D warnings`
error: import ending with `::{self}`
--> $DIR/unnecessary_self_imports.rs:8:1
|
LL | use std::rc::{self};
| ^^^^^^^^^-----------
| |
| help: consider omitting `::{self}`: `rc;`
|
= note: this will slightly change semantics; any non-module items at the same path will also be imported
error: aborting due to 2 previous errors