summaryrefslogtreecommitdiffstats
path: root/src/test/ui/underscore-imports/unused-2018.stderr
blob: 2afb9a10e2ccc422f14d6f7b7ad455a38956d556 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: unused import: `core::any`
  --> $DIR/unused-2018.rs:6:9
   |
LL |     use core::any;
   |         ^^^^^^^^^
   |
note: the lint level is defined here
  --> $DIR/unused-2018.rs:3:9
   |
LL | #![deny(unused_imports)]
   |         ^^^^^^^^^^^^^^

error: unused import: `core`
  --> $DIR/unused-2018.rs:10:9
   |
LL |     use core;
   |         ^^^^

error: aborting due to 2 previous errors