mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
17 lines
437 B
Plaintext
17 lines
437 B
Plaintext
error: visibility `pub(crate)` is not followed by an item
|
|
--> $DIR/pub-restricted-error-fn.rs:1:1
|
|
|
|
|
LL | pub(crate) () fn foo() {}
|
|
| ^^^^^^^^^^ the visibility
|
|
|
|
|
= help: you likely meant to define an item, e.g., `pub(crate) fn foo() {}`
|
|
|
|
error: expected item, found `(`
|
|
--> $DIR/pub-restricted-error-fn.rs:1:12
|
|
|
|
|
LL | pub(crate) () fn foo() {}
|
|
| ^ expected item
|
|
|
|
error: aborting due to 2 previous errors
|
|
|