mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
17 lines
481 B
Plaintext
17 lines
481 B
Plaintext
error: cannot find macro `macro_two` in this scope
|
|
--> $DIR/macro-use-wrong-name.rs:7:5
|
|
|
|
|
LL | macro_two!();
|
|
| ^^^^^^^^^ help: a macro with a similar name exists: `macro_one`
|
|
|
|
|
::: $DIR/auxiliary/two_macros.rs:2:1
|
|
|
|
|
LL | macro_rules! macro_one { () => ("one") }
|
|
| ---------------------- similarly named macro `macro_one` defined here
|
|
|
|
|
= help: consider importing this macro:
|
|
two_macros::macro_two
|
|
|
|
error: aborting due to previous error
|
|
|