2021-11-05 14:43:55 -05:00
|
|
|
error[E0364]: `legacy_macro` is only public within the crate, and cannot be re-exported outside
|
2018-12-09 12:49:21 -06:00
|
|
|
--> $DIR/macro-rules.rs:11:13
|
2018-11-11 11:28:56 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | pub use legacy_macro as _;
|
2018-11-11 11:28:56 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2022-06-14 00:58:46 -05:00
|
|
|
help: consider adding a `#[macro_export]` to the macro in the imported module
|
|
|
|
--> $DIR/macro-rules.rs:7:5
|
2018-11-11 11:28:56 -06:00
|
|
|
|
|
2022-06-14 00:58:46 -05:00
|
|
|
LL | macro_rules! legacy_macro { () => () }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-11-11 11:28:56 -06:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2018-11-11 11:28:56 -06:00
|
|
|
|
2023-05-29 15:36:06 -05:00
|
|
|
For more information about this error, try `rustc --explain E0364`.
|