2018-01-16 17:00:17 -06:00
|
|
|
error[E0659]: `bar` is ambiguous
|
2017-12-10 13:47:55 -06:00
|
|
|
--> $DIR/macro-paths.rs:25:5
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | bar::m! { //~ ERROR ambiguous
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
note: `bar` could refer to the name defined here
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/macro-paths.rs:26:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | mod bar { pub use two_macros::m; }
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
note: `bar` could also refer to the name imported here
|
|
|
|
--> $DIR/macro-paths.rs:24:9
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | use foo::*;
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^
|
|
|
|
= note: macro-expanded items do not shadow when used in a macro invocation path
|
|
|
|
|
2018-01-16 17:00:17 -06:00
|
|
|
error[E0659]: `baz` is ambiguous
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/macro-paths.rs:35:5
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | baz::m! { //~ ERROR ambiguous
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
note: `baz` could refer to the name defined here
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/macro-paths.rs:36:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | mod baz { pub use two_macros::m; }
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
note: `baz` could also refer to the name defined here
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/macro-paths.rs:30:1
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | / pub mod baz {
|
|
|
|
LL | | pub use two_macros::m;
|
|
|
|
LL | | }
|
2017-12-10 13:47:55 -06:00
|
|
|
| |_^
|
|
|
|
= note: macro-expanded items do not shadow when used in a macro invocation path
|
|
|
|
|
2018-03-03 14:26:18 -06:00
|
|
|
error[E0601]: main function not found in crate macro_paths
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
Some errors occurred: E0601, E0659.
|
|
|
|
For more information about an error, try `rustc --explain E0601`.
|