2018-01-16 17:00:17 -06:00
|
|
|
error[E0659]: `m` is ambiguous
|
2018-05-13 19:22:52 -05:00
|
|
|
--> $DIR/macros.rs:26:5
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | m! { //~ ERROR ambiguous
|
2018-09-07 18:51:20 -05:00
|
|
|
| ^ ambiguous name
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
|
note: `m` could refer to the name imported here
|
2018-05-13 19:22:52 -05:00
|
|
|
--> $DIR/macros.rs:27:13
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | use foo::m;
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^
|
|
|
|
note: `m` could also refer to the name imported here
|
2018-05-13 19:22:52 -05:00
|
|
|
--> $DIR/macros.rs:25:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | use two_macros::*;
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
= note: macro-expanded macro imports do not shadow
|
|
|
|
|
2018-01-16 17:00:17 -06:00
|
|
|
error[E0659]: `m` is ambiguous
|
2018-05-13 19:22:52 -05:00
|
|
|
--> $DIR/macros.rs:39:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | m! { //~ ERROR ambiguous
|
2018-09-07 18:51:20 -05:00
|
|
|
| ^ ambiguous name
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
|
note: `m` could refer to the name imported here
|
2018-05-13 19:22:52 -05:00
|
|
|
--> $DIR/macros.rs:40:17
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | use two_macros::n as m;
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
note: `m` could also refer to the name imported here
|
2018-05-13 19:22:52 -05:00
|
|
|
--> $DIR/macros.rs:32:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | use two_macros::m;
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
= note: macro-expanded macro imports do not shadow
|
|
|
|
|
2018-09-26 20:49:40 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2017-12-10 13:47:55 -06:00
|
|
|
|
2018-03-12 15:21:43 -05:00
|
|
|
For more information about this error, try `rustc --explain E0659`.
|