mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
14 lines
525 B
Text
14 lines
525 B
Text
error: functions tagged with `#[proc_macro]` must be `pub`
|
|
--> $DIR/visibility-path.rs:12:1
|
|
|
|
|
LL | pub(self) fn outer(input: TokenStream) -> TokenStream {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: functions tagged with `#[proc_macro]` must currently reside in the root of the crate
|
|
--> $DIR/visibility-path.rs:21:5
|
|
|
|
|
LL | pub(super) fn inner(input: TokenStream) -> TokenStream {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|