summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unnecessary_self_imports.stderr
blob: 83a5618c983d313dc0ab895da9cd9346b0661a92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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: `-D clippy::unnecessary-self-imports` implied by `-D warnings`
   = note: this will slightly change semantics; any non-module items at the same path will also be imported

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