2021-04-22 04:31:13 -05:00
|
|
|
error: import ending with `::{self}`
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/unnecessary_self_imports.rs:5:1
|
2021-04-22 04:31:13 -05: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 11:04:22 -05:00
|
|
|
= note: `-D clippy::unnecessary-self-imports` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::unnecessary_self_imports)]`
|
2021-04-22 04:31:13 -05:00
|
|
|
|
|
|
|
error: import ending with `::{self}`
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/unnecessary_self_imports.rs:7:1
|
2021-04-22 04:31:13 -05: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
|
|
|
|
|