mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
17 lines
425 B
Plaintext
17 lines
425 B
Plaintext
error: cannot find macro `bar` in this scope
|
|
--> $DIR/issue-49074.rs:12:4
|
|
|
|
|
LL | bar!();
|
|
| ^^^
|
|
|
|
|
= help: have you added the `#[macro_use]` on the module/import?
|
|
|
|
error: cannot find attribute `marco_use` in this scope
|
|
--> $DIR/issue-49074.rs:3:3
|
|
|
|
|
LL | #[marco_use] // typo
|
|
| ^^^^^^^^^ help: a built-in attribute with a similar name exists: `macro_use`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|