mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
23 lines
697 B
Text
23 lines
697 B
Text
error: usage of `pub` with `in`
|
|
--> tests/ui/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`
|
|
= help: to override `-D warnings` add `#[allow(clippy::pub_without_shorthand)]`
|
|
|
|
error: usage of `pub` with `in`
|
|
--> tests/ui/pub_without_shorthand.rs:18:5
|
|
|
|
|
LL | pub(in super) fn d() {}
|
|
| ^^^^^^^^^^^^^ help: remove it: `pub(super)`
|
|
|
|
error: usage of `pub` with `in`
|
|
--> tests/ui/pub_without_shorthand.rs:22:5
|
|
|
|
|
LL | pub(in crate) fn m() {}
|
|
| ^^^^^^^^^^^^^ help: remove it: `pub(crate)`
|
|
|
|
error: aborting due to 3 previous errors
|
|
|