summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/pub_with_shorthand.stderr
blob: 423b0508092f4e01730fc4c6a7802a03f05ad7c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
error: usage of `pub` without `in`
  --> $DIR/pub_with_shorthand.rs:13:1
   |
LL | pub(self) fn a() {}
   | ^^^^^^^^^ help: add it: `pub(in self)`
   |
   = note: `-D clippy::pub-with-shorthand` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::pub_with_shorthand)]`

error: usage of `pub` without `in`
  --> $DIR/pub_with_shorthand.rs:19:5
   |
LL |     pub(super) fn e() {}
   |     ^^^^^^^^^^ help: add it: `pub(in super)`

error: usage of `pub` without `in`
  --> $DIR/pub_with_shorthand.rs:20:5
   |
LL |     pub(self) fn f() {}
   |     ^^^^^^^^^ help: add it: `pub(in self)`

error: usage of `pub` without `in`
  --> $DIR/pub_with_shorthand.rs:21:5
   |
LL |     pub(crate) fn k() {}
   |     ^^^^^^^^^^ help: add it: `pub(in crate)`

error: aborting due to 4 previous errors