2021-10-20 13:56:10 +00:00
error[E0659]: `panic` is ambiguous
2018-12-25 15:56:47 +00:00
--> $DIR/shadow_builtin_macros.rs:15:14
2017-12-10 19:47:55 +00:00
|
2019-03-09 12:03:44 +00:00
LL | fn f() { panic!(); }
2018-09-07 23:51:20 +00:00
| ^^^^^ ambiguous name
2017-12-10 19:47:55 +00:00
|
2021-10-20 13:56:10 +00:00
= note: ambiguous because of a conflict between a name from a glob import and an outer scope during import or macro resolution
2018-11-04 22:11:59 +00:00
= note: `panic` could refer to a macro from prelude
note: `panic` could also refer to the macro imported here
2018-12-25 15:56:47 +00:00
--> $DIR/shadow_builtin_macros.rs:14:9
2017-12-10 19:47:55 +00:00
|
2018-02-23 00:42:32 +00:00
LL | use foo::*;
2017-12-10 19:47:55 +00:00
| ^^^^^^
2018-11-04 22:11:59 +00:00
= help: consider adding an explicit import of `panic` to disambiguate
2018-11-11 16:46:04 +00:00
= help: or use `self::panic` to refer to this macro unambiguously
2017-12-10 19:47:55 +00:00
2021-10-20 13:56:10 +00:00
error[E0659]: `panic` is ambiguous
2018-12-25 15:56:47 +00:00
--> $DIR/shadow_builtin_macros.rs:33:5
2018-09-18 00:19:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | panic!();
2018-09-18 00:19:26 +00:00
| ^^^^^ ambiguous name
|
2021-10-20 13:56:10 +00:00
= note: ambiguous because of a conflict between a macro-expanded name and a less macro-expanded name from outer scope during import or macro resolution
2018-11-04 22:11:59 +00:00
= note: `panic` could refer to a macro from prelude
note: `panic` could also refer to the macro defined here
2018-12-25 15:56:47 +00:00
--> $DIR/shadow_builtin_macros.rs:30:9
2018-09-18 00:19:26 +00:00
|
LL | macro_rules! panic { () => {} }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
LL | } }
LL | m!();
2021-10-14 18:28:28 +00:00
| ---- in this macro invocation
2021-02-13 19:52:25 +00:00
= note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-09-18 00:19:26 +00:00
2021-10-20 13:56:10 +00:00
error[E0659]: `n` is ambiguous
2018-12-25 15:56:47 +00:00
--> $DIR/shadow_builtin_macros.rs:49:5
2017-12-10 19:47:55 +00:00
|
2019-03-09 12:03:44 +00:00
LL | n!();
2018-09-07 23:51:20 +00:00
| ^ ambiguous name
2017-12-10 19:47:55 +00:00
|
2021-10-20 13:56:10 +00:00
= note: ambiguous because of a conflict between a name from a glob import and an outer scope during import or macro resolution
2018-11-04 22:11:59 +00:00
note: `n` could refer to the macro imported here
2018-12-25 15:56:47 +00:00
--> $DIR/shadow_builtin_macros.rs:48:9
2017-12-10 19:47:55 +00:00
|
2018-02-23 00:42:32 +00:00
LL | use bar::*;
2017-12-10 19:47:55 +00:00
| ^^^^^^
2018-11-04 22:11:59 +00:00
= help: consider adding an explicit import of `n` to disambiguate
2018-11-11 16:46:04 +00:00
= help: or use `self::n` to refer to this macro unambiguously
2018-11-04 22:11:59 +00:00
note: `n` could also refer to the macro imported here
2018-12-25 15:56:47 +00:00
--> $DIR/shadow_builtin_macros.rs:36:13
2017-12-10 19:47:55 +00:00
|
2018-02-23 00:42:32 +00:00
LL | #[macro_use(n)]
2017-12-10 19:47:55 +00:00
| ^
2021-10-20 13:56:10 +00:00
error[E0659]: `panic` is ambiguous
2019-08-12 18:52:37 +00:00
--> $DIR/shadow_builtin_macros.rs:20:14
|
LL | fn f() { panic!(); }
| ^^^^^ ambiguous name
|
2021-10-20 13:56:10 +00:00
= note: ambiguous because of a conflict between a macro-expanded name and a less macro-expanded name from outer scope during import or macro resolution
2019-08-12 18:52:37 +00:00
= note: `panic` could refer to a macro from prelude
note: `panic` could also refer to the macro imported here
--> $DIR/shadow_builtin_macros.rs:19:26
|
LL | ::two_macros::m!(use foo::panic;);
| ^^^^^^^^^^
= help: use `self::panic` to refer to this macro unambiguously
2017-12-10 19:47:55 +00:00
error: aborting due to 4 previous errors
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0659`.