You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
= note: this could be because a macro annotated with `#[macro_export]` will be exported at the root of the crate instead of the module where it is defined
8
+
help: a macro with this name exists at the root of the crate
9
+
|
10
+
LL ~ use ::nu;
11
+
LL ~ pub use self::p::{other_item as _};
12
+
|
13
+
14
+
error: aborting due to previous error
15
+
16
+
For more information about this error, try `rustc --explain E0432`.
= note: this could be because a macro annotated with `#[macro_export]` will be exported at the root of the crate instead of the module where it is defined
8
+
help: a macro with this name exists at the root of the crate
9
+
|
10
+
LL ~ use ::nu;
11
+
LL ~ pub use self::{other_item as _};
12
+
|
13
+
14
+
error: aborting due to previous error
15
+
16
+
For more information about this error, try `rustc --explain E0432`.
0 commit comments