summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/pub_without_shorthand.stderr
blob: a18c9bf893449f10b5c4bd045a87c3da38cfd497 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
error: usage of `pub` with `in`
  --> $DIR/pub_without_shorthand.rs:14:1
   |
LL | pub(in self) fn b() {}
   | ^^^^^^^^^^^^ help: remove it: `pub(self)`
   |
   = note: `-D clippy::pub-without-shorthand` implied by `-D warnings`

error: usage of `pub` with `in`
  --> $DIR/pub_without_shorthand.rs:18:5
   |
LL |     pub(in super) fn d() {}
   |     ^^^^^^^^^^^^^ help: remove it: `pub(super)`

error: usage of `pub` with `in`
  --> $DIR/pub_without_shorthand.rs:22:5
   |
LL |     pub(in crate) fn m() {}
   |     ^^^^^^^^^^^^^ help: remove it: `pub(crate)`

error: aborting due to 3 previous errors