rust/src/test/ui/imports/macros.stderr

57 lines
1.4 KiB
Plaintext
Raw Normal View History

error: `m` is ambiguous
--> $DIR/macros.rs:50:5
|
2018-02-22 18:42:32 -06:00
LL | m!(); //~ ERROR ambiguous
| ^
|
note: `m` could refer to the macro defined here
--> $DIR/macros.rs:48:5
|
2018-02-22 18:42:32 -06:00
LL | macro_rules! m { () => {} }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: `m` could also refer to the macro imported here
--> $DIR/macros.rs:49:9
|
2018-02-22 18:42:32 -06:00
LL | use two_macros::m;
| ^^^^^^^^^^^^^
2018-01-16 17:00:17 -06:00
error[E0659]: `m` is ambiguous
--> $DIR/macros.rs:28:5
|
2018-02-22 18:42:32 -06:00
LL | m! { //~ ERROR ambiguous
| ^
|
note: `m` could refer to the name imported here
--> $DIR/macros.rs:29:13
|
2018-02-22 18:42:32 -06:00
LL | use foo::m;
| ^^^^^^
note: `m` could also refer to the name imported here
--> $DIR/macros.rs:27:9
|
2018-02-22 18:42:32 -06:00
LL | use two_macros::*;
| ^^^^^^^^^^^^^
= note: macro-expanded macro imports do not shadow
2018-01-16 17:00:17 -06:00
error[E0659]: `m` is ambiguous
--> $DIR/macros.rs:41:9
|
2018-02-22 18:42:32 -06:00
LL | m! { //~ ERROR ambiguous
| ^
|
note: `m` could refer to the name imported here
--> $DIR/macros.rs:42:17
|
2018-02-22 18:42:32 -06:00
LL | use two_macros::n as m;
| ^^^^^^^^^^^^^^^^^^
note: `m` could also refer to the name imported here
--> $DIR/macros.rs:34:9
|
2018-02-22 18:42:32 -06:00
LL | use two_macros::m;
| ^^^^^^^^^^^^^
= note: macro-expanded macro imports do not shadow
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0659`.