2021-03-31 15:43:33 -03:00
|
|
|
error: can't qualify macro_rules invocation with `pub`
|
|
|
|
--> $DIR/pub-macro-rules.rs:2:5
|
|
|
|
|
|
|
|
|
LL | pub macro_rules! foo {
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: try exporting the macro
|
|
|
|
|
|
|
|
|
LL | #[macro_export] macro_rules! foo {
|
|
|
|
| ~~~~~~~~~~~~~~~
|
2021-03-31 15:43:33 -03:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2021-03-31 15:43:33 -03:00
|
|
|
|