]> git.lizzy.rs Git - rust.git/blob - tests/ui/unnecessary_self_imports.stderr
Auto merge of #8374 - Alexendoo:bless-revisions, r=camsteffen
[rust.git] / 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