summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/pub_use.stderr
blob: 781572736645dc85d26edce2cd7f812816301e42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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 previous error