rust/src/test/ui/imports/macro-paths.stderr

45 lines
1.2 KiB
Plaintext
Raw Normal View History

2018-01-17 00:00:17 +01:00
error[E0659]: `bar` is ambiguous
--> $DIR/macro-paths.rs:25:5
|
25 | bar::m! { //~ ERROR ambiguous
| ^^^^^^
|
note: `bar` could refer to the name defined here
--> $DIR/macro-paths.rs:26:9
|
26 | mod bar { pub use two_macros::m; }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: `bar` could also refer to the name imported here
--> $DIR/macro-paths.rs:24:9
|
24 | use foo::*;
| ^^^^^^
= note: macro-expanded items do not shadow when used in a macro invocation path
2018-01-17 00:00:17 +01:00
error[E0659]: `baz` is ambiguous
--> $DIR/macro-paths.rs:35:5
|
35 | baz::m! { //~ ERROR ambiguous
| ^^^^^^
|
note: `baz` could refer to the name defined here
--> $DIR/macro-paths.rs:36:9
|
36 | mod baz { pub use two_macros::m; }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: `baz` could also refer to the name defined here
--> $DIR/macro-paths.rs:30:1
|
30 | / pub mod baz {
31 | | pub use two_macros::m;
32 | | }
| |_^
= note: macro-expanded items do not shadow when used in a macro invocation path
error[E0601]: main function not found
error: aborting due to 3 previous errors
2018-02-19 21:40:25 +01:00
You've got a few errors: E0601, E0659
If you want more information on an error, try using "rustc --explain E0601"