2021-04-22 09:31:13 +00:00
|
|
|
error: import ending with `::{self}`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/unnecessary_self_imports.rs:5:1
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
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
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::unnecessary-self-imports` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::unnecessary_self_imports)]`
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
error: import ending with `::{self}`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/unnecessary_self_imports.rs:7:1
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
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
|
|
|
|
|