rust-clippy/tests/ui/pub_use.stderr

13 lines
347 B
Text
Raw Normal View History

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
2022-09-22 16:04:22 +00:00
= note: `-D clippy::pub-use` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::pub_use)]`
error: aborting due to previous error