mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
20 lines
403 B
Text
20 lines
403 B
Text
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
|
|
|