mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
c2c73189c8
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
12 lines
349 B
Text
12 lines
349 B
Text
error: using `pub use`
|
|
--> $DIR/pub_use.rs:10:5
|
|
|
|
|
LL | pub use inner::Test;
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: move the exported item to a public module instead
|
|
= note: `-D clippy::pub-use` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::pub_use)]`
|
|
|
|
error: aborting due to 1 previous error
|
|
|