2019-04-07 10:56:50 -05:00
error[E0432]: unresolved import `issue_59764::foo::makro`
2019-04-07 12:56:41 -05:00
--> $DIR/issue-59764.rs:6:5
2019-04-07 10:56:50 -05:00
|
LL | use issue_59764::foo::makro;
| ^^^^^^^^^^^^^^^^^^^^^^^ no `makro` in `foo`
2019-04-07 12:56:41 -05:00
|
= 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
help: a macro with this name exists at the root of the crate
|
LL | use issue_59764::makro;
| ^^^^^^^^^^^^^^^^^^
2019-04-07 10:56:50 -05:00
error: cannot determine resolution for the macro `makro`
2019-04-07 12:56:41 -05:00
--> $DIR/issue-59764.rs:9:1
2019-04-07 10:56:50 -05:00
|
LL | makro!(bar);
| ^^^^^
|
= note: import resolution is stuck, try simplifying macro imports
error[E0425]: cannot find function `bar` in this scope
2019-04-07 12:56:41 -05:00
--> $DIR/issue-59764.rs:13:5
2019-04-07 10:56:50 -05:00
|
LL | bar();
| ^^^ not found in this scope
error: aborting due to 3 previous errors
Some errors occurred: E0425, E0432.
For more information about an error, try `rustc --explain E0425`.