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

error: unused import: `d::*`
  --> $DIR/pub-reexport-empty.rs:22:9
   |
LL | pub use d::*;
   |         ^^^^

error: aborting due to 2 previous errors