]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/unnecessary_self_imports.stderr
Merge commit '35d9c6bf256968e1b40e0d554607928bdf9cebea' into sync_cg_clif-2022-02-23
[rust.git] / src / tools / clippy / tests / ui / unnecessary_self_imports.stderr
1 error: import ending with `::{self}`
2   --> $DIR/unnecessary_self_imports.rs:6:1
3    |
4 LL | 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
12 error: import ending with `::{self}`
13   --> $DIR/unnecessary_self_imports.rs:8:1
14    |
15 LL | 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
22 error: aborting due to 2 previous errors
23